diff options
| author | kj_sh604 | 2026-06-09 18:36:10 -0400 |
|---|---|---|
| committer | kj_sh604 | 2026-06-09 18:36:10 -0400 |
| commit | fcab96547102df65d2ce5d745d6220b8fed40c6a (patch) | |
| tree | 526b5939d72996629de0da10319df9fd6c2bb330 /.config/Code | |
| parent | da6214317b57c615b2192f0aeec06fda29d2f84c (diff) | |
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" |
