Context:
- VS Code IDE
- Vim Extension
Problem:
-
Ctrl+dkeybinding does not work as expected. - Expecting multi-select of highlighted word. Instead, get some type of chunk selection.
Solutions:
1) Play a Vim melody combo: viw + gb
-
viwto select the word -
gbto grab next occurrence
2) Enable the Ctrl+d keybinding:
- Edit VS Code's
settings.jsonto include the following:
"vim.handleKeys": {
"<C-d>": false
}
Reference:
https://github.com/VSCodeVim/Vim/issues/2144
Extra:
Gif screen recordings created in Linux with Peek


Top comments (1)
nice!