What are equivalents for values "selectNextQuickFix" and "selectPrevQuickFix" in VSCode 1.37.1?

122 Views Asked by At

I am trying to get the same behaviour in VSCode as in Vim for cycling through the completion list.

With Vim shift+tab and tab respectively cycle up and down the completion list. I like it because I don't have to move my hand to arrow keys.

I found configuration for that kind of behaviour on this blog.

Problem is that suggested values selectNextQuickFix and selectPrevQuickFix apparently don't exist anymore in version 1.37.1.

I get this message: Value is not accepted. Valid values: [bla, bla, list of values]

Does anyone know which value should I put instead of those two to have the exact same behaviour?

1

There are 1 best solutions below

0
On

version: 1.81.1

{
    "key": "ctrl+n",
    "command": "selectNextCodeAction",
    "when": "codeActionMenuVisible"
},
{
    "key": "ctrl+p",
    "command": "selectPrevCodeAction",
    "when": "codeActionMenuVisible"
},