move viewport top to cursor on page navigate (#463)

This commit is contained in:
Ian Shehadeh
2023-07-11 17:58:29 +02:00
committed by GitHub
parent b39ba3585a
commit a9a5242159
+1 -1
View File
@@ -448,7 +448,7 @@ export class Editor {
} }
this.editorView.dispatch({ this.editorView.dispatch({
selection: { anchor: pos }, selection: { anchor: pos },
scrollIntoView: true, effects: EditorView.scrollIntoView(pos, { y: "start" }),
}); });
} else if (!stateRestored) { } else if (!stateRestored) {
// Somewhat ad-hoc way to determine if the document contains frontmatter and if so, putting the cursor _after it_. // Somewhat ad-hoc way to determine if the document contains frontmatter and if so, putting the cursor _after it_.