There is a keyboard shortcut for scrolling down and up in the intellisense suggestion menu. I forget what the default binding is but I use "j". However, this doesn’t apply to the quick fix menu. I couldn’t find any mention of a keyboard shortcut for this behavior. Would I have to write my own extension?
Question posted in Visual Studio Code
View the official documentation.
View the official documentation.
2
Answers
It appears you should use the
list
scroll commands:list.scrollDown
Ctrl+DownArrowlist.scrollUp
Ctrl+UpArrowLooks like
selectPrevCodeAction
andselectNextCodeAction
is what we need.Sadly I was not able to make
j / k
work for whatever reason, butctrl+j / ctrl+k
worked just fine.Here are the settings you want: