We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96099e3 commit 899d6a3Copy full SHA for 899d6a3
1 file changed
keymap/vim.js
@@ -866,7 +866,7 @@
866
if (vim.insertMode) { command = handleKeyInsertMode(); }
867
else { command = handleKeyNonInsertMode(); }
868
if (command === false) {
869
- return undefined;
+ return !vim.insertMode && key.length === 1 ? function() { return true; } : undefined;
870
} else if (command === true) {
871
// TODO: Look into using CodeMirror's multi-key handling.
872
// Return no-op since we are caching the key. Counts as handled, but
0 commit comments