summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh6042025-12-10 21:24:16 -0500
committerkj_sh6042025-12-10 21:24:16 -0500
commit9b8951ea375a01e76740280e416401139ba3556e (patch)
tree9cde6a3f4e3fe66686a40e357d5229b636b54f1b
parent866f563bf7f76b718bc18ffb053702c893e9de0e (diff)
refactor: terminal and panel shortcuts
-rw-r--r--.config/Code/User/keybindings.json26
1 files changed, 20 insertions, 6 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index 728b7d2..551e6bb 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -119,19 +119,33 @@
119 "command": "cSpell.toggleEnableSpellChecker" 119 "command": "cSpell.toggleEnableSpellChecker"
120 }, 120 },
121 { 121 {
122 "key": "ctrl+w ctrl+j", 122 "key": "alt+a j",
123 "command": "workbench.action.focusNextPart" 123 "command": "workbench.action.focusNextPart"
124 }, 124 },
125 { 125 {
126 "key": "ctrl+w k", 126 "key": "alt+a alt+j",
127 "command": "workbench.action.focusNextPart"
128 },
129 {
130 "key": "alt+a k",
127 "command": "workbench.action.focusPreviousPart" 131 "command": "workbench.action.focusPreviousPart"
128 }, 132 },
129 { 133 {
130 "key": "ctrl+w ctrl+k", 134 "key": "alt+a alt+k",
131 "command": "workbench.action.focusPreviousPart" 135 "command": "workbench.action.focusPreviousPart"
132 }, 136 },
133 { 137 {
134 "key": "ctrl+w j", 138 "key": "shift+alt+t",
135 "command": "workbench.action.focusNextPart" 139 "command": "workbench.action.terminal.toggleTerminal",
140 "when": "terminal.active"
141 },
142 {
143 "key": "ctrl+`",
144 "command": "-workbench.action.terminal.toggleTerminal",
145 "when": "terminal.active"
146 },
147 {
148 "key": "shift+alt+p",
149 "command": "workbench.action.togglePanel"
136 }, 150 },
137] 151] \ No newline at end of file