diff options
| author | kj_sh604 | 2026-02-22 05:33:45 -0500 |
|---|---|---|
| committer | kj_sh604 | 2026-02-22 05:33:45 -0500 |
| commit | 12bdabfa9bb73f4563482a929856246da3431442 (patch) | |
| tree | 9ab0860b3704455803d33304c9b23c251bdd8134 | |
| parent | c919bd563494eea27ba6116e7d4868673b28cd44 (diff) | |
refactor: config and keybind changes for panel toggles
| -rw-r--r-- | .config/Code/User/keybindings.json | 50 | ||||
| -rw-r--r-- | .config/Code/User/settings.json | 10 |
2 files changed, 57 insertions, 3 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index 8a2fd20..ace85aa 100644 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json | |||
| @@ -152,6 +152,10 @@ | |||
| 152 | "when": "terminal.active" | 152 | "when": "terminal.active" |
| 153 | }, | 153 | }, |
| 154 | { | 154 | { |
| 155 | "key": "ctrl+`", | ||
| 156 | "command": "workbench.action.showAllEditors" | ||
| 157 | }, | ||
| 158 | { | ||
| 155 | "key": "shift+alt+j", | 159 | "key": "shift+alt+j", |
| 156 | "command": "workbench.action.focusNextPart" | 160 | "command": "workbench.action.focusNextPart" |
| 157 | }, | 161 | }, |
| @@ -169,6 +173,7 @@ | |||
| 169 | "command": "-workbench.action.terminal.openNativeConsole", | 173 | "command": "-workbench.action.terminal.openNativeConsole", |
| 170 | "when": "!terminalFocus" | 174 | "when": "!terminalFocus" |
| 171 | }, | 175 | }, |
| 176 | // panel navigation-ish | ||
| 172 | { | 177 | { |
| 173 | "key": "shift+alt+[", | 178 | "key": "shift+alt+[", |
| 174 | "command": "workbench.action.previousPanelView" | 179 | "command": "workbench.action.previousPanelView" |
| @@ -204,5 +209,46 @@ | |||
| 204 | { | 209 | { |
| 205 | "key": "shift+alt+b right", | 210 | "key": "shift+alt+b right", |
| 206 | "command": "workbench.action.toggleAuxiliaryBar" | 211 | "command": "workbench.action.toggleAuxiliaryBar" |
| 207 | } | 212 | }, |
| 208 | ] | 213 | // zen mode (editor + status bar only) |
| 214 | { | ||
| 215 | "key": "shift+alt+b up", | ||
| 216 | "command": "runCommands", | ||
| 217 | "args": { | ||
| 218 | "commands": [ | ||
| 219 | "workbench.action.toggleZenMode" | ||
| 220 | ] | ||
| 221 | }, | ||
| 222 | "when": "!inZenMode" | ||
| 223 | }, | ||
| 224 | { | ||
| 225 | "key": "shift+alt+b up", | ||
| 226 | "command": "runCommands", | ||
| 227 | "args": { | ||
| 228 | "commands": [ | ||
| 229 | "workbench.action.toggleZenMode", | ||
| 230 | ] | ||
| 231 | }, | ||
| 232 | "when": "inZenMode" | ||
| 233 | }, | ||
| 234 | { | ||
| 235 | "key": "shift+alt+b k", | ||
| 236 | "command": "runCommands", | ||
| 237 | "args": { | ||
| 238 | "commands": [ | ||
| 239 | "workbench.action.toggleZenMode", | ||
| 240 | ] | ||
| 241 | }, | ||
| 242 | "when": "!inZenMode" | ||
| 243 | }, | ||
| 244 | { | ||
| 245 | "key": "shift+alt+b k", | ||
| 246 | "command": "runCommands", | ||
| 247 | "args": { | ||
| 248 | "commands": [ | ||
| 249 | "workbench.action.toggleZenMode", | ||
| 250 | ] | ||
| 251 | }, | ||
| 252 | "when": "inZenMode" | ||
| 253 | }, | ||
| 254 | ] \ No newline at end of file | ||
diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index d5334f0..8439190 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json | |||
| @@ -310,5 +310,13 @@ | |||
| 310 | "python.terminal.activateEnvironment": false, | 310 | "python.terminal.activateEnvironment": false, |
| 311 | "[nim]": { | 311 | "[nim]": { |
| 312 | "editor.defaultFormatter": "arnetheduck.vscode-nph" | 312 | "editor.defaultFormatter": "arnetheduck.vscode-nph" |
| 313 | } | 313 | }, |
| 314 | "zenMode.centerLayout": false, | ||
| 315 | "zenMode.fullScreen": false, | ||
| 316 | "zenMode.hideActivityBar": true, | ||
| 317 | "zenMode.hideLineNumbers": false, | ||
| 318 | "zenMode.hideStatusBar": false, | ||
| 319 | "zenMode.restore": true, | ||
| 320 | "zenMode.showTabs": "none", | ||
| 321 | "zenMode.silentNotifications": false | ||
| 314 | } \ No newline at end of file | 322 | } \ No newline at end of file |
