Closed eEQK closed 2 years ago
Actually, the commands mentioned in readme work, it's just I think I've used wrong when
clauses with them
{
"key": "j",
"command": "workbench.action.quickOpenSelectNext",
"when": "!editorTextFocus && inQuickOpen"
},
{
"key": "k",
"command": "workbench.action.quickOpenSelectPrevious",
"when": "!editorTextFocus && inQuickOpen"
},
{
"key": "alt+enter",
"command": "keyboard-quickfix.openQuickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
}
These navigate between entries in the menu even though the text input is focused, which is exactly what I wanted.
I want to navigate the menu with
jk
and having the text input focused prevents my keybindings from working. Most of the time I'm not going to use the search input when selecting a quick fix, and instead of having to pressTab
every time I open the menu I'd like the menu to not have the text input focus from the very beginning.I've tried using
multiCommand
extension with e.g.or instead of
workbench.action.focusNextPart
-workbench.action.blur
andtab
, however none of these workis it possible to somehow achieve what I want? or alternatively add such functionality to the plugin?