Vim: hjkl keys as arrow keys in intellisense contextual menu

Created on 24 Jul 2018  路  1Comment  路  Source: VSCodeVim/Vim

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.

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:

{
    "key": "ctrl+k",
    "command": "selectPrevSuggestion",
    "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},

>All comments

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"
},
Was this page helpful?
0 / 5 - 0 ratings

Related issues

st-schneider picture st-schneider  路  3Comments

spinningarrow picture spinningarrow  路  3Comments

ghost picture ghost  路  3Comments

rajinder-yadav picture rajinder-yadav  路  3Comments

liamdawson picture liamdawson  路  3Comments