-
I am facing this issue where I am able to move downward in
|
Beta Was this translation helpful? Give feedback.
Answered by
natac13
Jan 25, 2024
Replies: 1 comment 1 reply
-
in your keybindings.json {
"key": "cmd+j",
"command": "selectNextSuggestion",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "cmd+k",
"command": "selectPrevSuggestion",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "cmd+J",
"command": "selectNextCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "cmd+k",
"command": "selectPrevCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "cmd+j",
"command": "workbench.action.quickOpenSelectNext",
"when": "inQuickOpen"
},
{
"key": "cmd+k",
"command": "workbench.action.quickOpenSelectPrevious",
"when": "inQuickOpen"
},
{
"key": "cmd+k",
"command": "list.focusUp",
"when": "listFocus && !inputFocus"
},
{
"key": "cmd+j",
"command": "list.focusDown",
"when": "listFocus && !inputFocus"
}, |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
OverRevvv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in your keybindings.json