Reputation: 102
I have vim extension installed in vs code here are it's settings
// Vim Extension
"vim.commandLineModeKeyBindingsNonRecursive": [],
"vim.normalModeKeyBindingsNonRecursive": [],
"vim.useCtrlKeys": false,
// this is optional if you want to remap your vim default esc to jj
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
My Key bindings for copying line or down don't work from the shortcuts i.e.
Edit 1: Works if I disable Vim extension.
Upvotes: 2
Views: 2405
Reputation: 102
I figured it out.
Upvotes: 4