We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95138db commit a029287Copy full SHA for a029287
1 file changed
src/obsidian/helpers/inline-editor/inline-editor.ts
@@ -236,6 +236,9 @@ export class InlineEditor {
236
};
237
238
fixVimWhenZooming = () => {
239
+ const viewState = this.view.viewStore.getValue();
240
+ if (viewState.document.editing.isInSidebar) return;
241
+
242
const unsub = fixVimCursorWhenZooming(this.view);
243
if (unsub) {
244
this.subscriptions.add(unsub);
0 commit comments