summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh6042025-12-26 22:41:05 -0500
committerkj_sh6042025-12-26 22:41:05 -0500
commitb0ee1df51dfd37f39210629456febd482028c9ff (patch)
tree1c0d249bbe65fc4696bd1c0e45f3b8c8c7937635
parent4016e8beda7410b6ab07189ae8bf5fb1ddf21db9 (diff)
refactor: remove `ctrl+` from panel keybinds
-rw-r--r--.config/Code/User/keybindings.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index 5c54f5f..a3f8fcd 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -151,11 +151,12 @@
151 "when": "!terminalFocus" 151 "when": "!terminalFocus"
152 }, 152 },
153 { 153 {
154 "key": "ctrl+shift+alt+[", 154 "key": "shift+alt+[",
155 "command": "workbench.action.previousPanelView" 155 "command": "workbench.action.previousPanelView"
156 }, 156 },
157 { 157 {
158 "key": "ctrl+shift+alt+]", 158 "key": "shift+alt+]",
159 "command": "workbench.action.nextPanelView" 159 "command": "workbench.action.nextPanelView"
160 }, 160 },
161
161] 162]