We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2a24b commit 71919dbCopy full SHA for 71919db
src/index.ts
@@ -76,7 +76,7 @@ const vimPlugin = ViewPlugin.fromClass(
76
if (!cm.state.vim) return;
77
cm.state.vim.mode = e.mode;
78
if (e.subMode) {
79
- cm.state.vim.mode += " block";
+ cm.state.vim.mode += e.subMode === "linewise" ? " line" : " block";
80
}
81
cm.state.vim.status = "";
82
this.blockCursor.scheduleRedraw();
0 commit comments