Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
What happened:
i to enter edit modeWhat did you expect to happen:
while in edit mode, CTRL+V pastes the content of the clipboard
If I disable VSCode Vim, CTRL+V works as usual.
SHIFT+CTRL+V works, however CTRL+V used to work too
i have the same problme,when i open vim. C+v not used to work, on mac,linux,windows
You can set vim.useCtrlKeys to false, or set
"vim.handleKeys": {
"<C-c>": false,
"<C-v>": false,
}
hmm, "fixing" this problem by changing to the previous behavior makes VSCodeVim uncompatible to original Vim behvaior.
Should we "fix" this?
Or the vim.handleKeys config which @scalpelx commented should be documented as FAQ?
Any reason why this can't work?
"vim.insertModeKeyBindings": [
{
"before": ["<C-v>"],
"after": [],
"commands": "editor.action.clipboardPasteAction",
}
]
Would be nice to have <C-v> as paste in insert mode without giving up visual block because of useCtrlKeys or handleKeys.
Most helpful comment
You can set
vim.useCtrlKeysto false, or set