diff options
Diffstat (limited to '.config/Code')
| -rw-r--r-- | .config/Code/User/keybindings.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index acee1bd..526e1ea 100644 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json @@ -133,6 +133,22 @@ "command": "-workbench.action.terminal.openNativeConsole", "when": "!terminalFocus" }, + // quick open / search in sidebar and copilot chat panel (mirrors vim \\ff \\fg \\fb) + { + "key": "\\ f f", + "command": "workbench.action.quickOpen", + "when": "!editorTextFocus && !terminalFocus && !textInputFocus" + }, + { + "key": "\\ f g", + "command": "workbench.view.search.focus", + "when": "!editorTextFocus && !terminalFocus && !textInputFocus" + }, + { + "key": "\\ f b", + "command": "workbench.action.quickOpenPreviousRecentlyUsedEditor", + "when": "!editorTextFocus && !terminalFocus && !textInputFocus" + }, { "key": "ctrl+b", "command": "-workbench.action.toggleSidebarVisibility" |
