Is your feature request related to a problem? Please describe.
hjkl keys as arrow keys in intellisense contextual menu do not work.
I would like to have an option to configure VSCodeVim to use hjkl for that so I won't need to to reach the arrow keys and leave the Home Row.
Describe the solution you'd like
I would love to enable hjkl keys as arrow keys in intellisense contextual menu when VSCodeVim is installed and enabled.
You can add something like the following to your keybindings.json and it should not interfere with any other keys given the context:
{
"key": "ctrl+k",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
Most helpful comment
You can add something like the following to your keybindings.json and it should not interfere with any other keys given the context: