We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one):
BUG REPORT
Environment:
What happened:
<Esc> is infinitely mapped for setting "vim.insertModeKeyBindingsNonRecursive"
<Esc>
What did you expect to happen:
<Esc> is mapped only once for setting "vim.insertModeKeyBindingsNonRecursive"
How to reproduce it:
"vim.insertModeKeyBindingsNonRecursive": [ { "before": ["<Esc>"], "after": ["x","<Esc>"] // <- 'x' is arbitrary character }]
i
Insert Mode
a
The text was updated successfully, but these errors were encountered:
A work-around for this:
"vim.insertModeKeyBindingsNonRecursive": [ { "before": [ "<Esc>" ], "after": [ "x", "ctrl+[" ] } ],
if you also use ctrl+[ you could also add a complementary mapping.
ctrl+[
Sorry, something went wrong.
There was a regression with this merge commit way back when: d09722b#diff-1a1dc9b353e552d9f1994be988780695 which caused all the non-recursive keybindings to be recursive.
Will fix with this PR: #2208
fixes #1869, #1968. regression that caused non-recursive keymappings …
9d89989
…to be recursive
113dd77
No branches or pull requests
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one):
BUG REPORT
Environment:
What happened:
<Esc>
is infinitely mapped for setting "vim.insertModeKeyBindingsNonRecursive"What did you expect to happen:
<Esc>
is mapped only once for setting "vim.insertModeKeyBindingsNonRecursive"How to reproduce it:
i
(to enterInsert Mode
)a
,<Esc>
The text was updated successfully, but these errors were encountered: