summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh6042025-12-26 17:34:57 -0500
committerkj_sh6042025-12-26 17:34:57 -0500
commit4016e8beda7410b6ab07189ae8bf5fb1ddf21db9 (patch)
treee0b025e58c116a6b16beac93682c2debf203bd76
parent90080e67161c5d33302b0ee92984a95aa828db90 (diff)
refactor: next prev `PanelView` keybinds
-rw-r--r--.config/Code/User/keybindings.json10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index b190397..5c54f5f 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -150,4 +150,12 @@
150 "command": "-workbench.action.terminal.openNativeConsole", 150 "command": "-workbench.action.terminal.openNativeConsole",
151 "when": "!terminalFocus" 151 "when": "!terminalFocus"
152 }, 152 },
153] \ No newline at end of file 153 {
154 "key": "ctrl+shift+alt+[",
155 "command": "workbench.action.previousPanelView"
156 },
157 {
158 "key": "ctrl+shift+alt+]",
159 "command": "workbench.action.nextPanelView"
160 },
161]