mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-06-27 14:25:53 +00:00
Revert "🎨 https://github.com/siyuan-note/siyuan/issues/17602 (#17619)"
This reverts commit 0d097b1400.
This commit is contained in:
@@ -658,18 +658,7 @@ export const keydown = (protyle: IProtyle, editorElement: HTMLElement) => {
|
||||
) ||
|
||||
(!firstEditElement && nodeElement === protyle.wysiwyg.element.firstElementChild)) {
|
||||
// 不能用\n判断,否则文字过长折行将错误 https://github.com/siyuan-note/siyuan/issues/6156
|
||||
// 代码块中光标在第一行之后时不应跳到标题,因为 getSelectionPosition 对非第一行的计算是错误的 https://github.com/siyuan-note/siyuan/issues/17602
|
||||
let skipJumpToTitle = false;
|
||||
if (nodeElement.classList.contains("code-block")) {
|
||||
const hljsElement = nodeElement.querySelector(".hljs");
|
||||
const codeText = hljsElement?.textContent || "";
|
||||
const firstNewlineIndex = codeText.indexOf("\n");
|
||||
// 有多行并且在第一行之后,则需要skipJumpToTitle
|
||||
if (firstNewlineIndex !== -1 && position.start > firstNewlineIndex) {
|
||||
skipJumpToTitle = true;
|
||||
}
|
||||
}
|
||||
if ((getSelectionPosition(nodeEditableElement, range).top - nodeEditableElement.getBoundingClientRect().top < 20 || nodeElement.classList.contains("av")) && !skipJumpToTitle) {
|
||||
if (getSelectionPosition(nodeEditableElement, range).top - nodeEditableElement.getBoundingClientRect().top < 20 || nodeElement.classList.contains("av")) {
|
||||
if (protyle.title && protyle.title.editElement &&
|
||||
(protyle.wysiwyg.element.firstElementChild.getAttribute("data-eof") === "1" ||
|
||||
protyle.contentElement.scrollTop === 0)) {
|
||||
|
||||
Reference in New Issue
Block a user