diff options
| author | kj_sh604 <43.splash@gmail.com> | 2026-02-22 05:33:45 -0500 |
|---|---|---|
| committer | kj_sh604 <43.splash@gmail.com> | 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 @@ "when": "terminal.active" }, { + "key": "ctrl+`", + "command": "workbench.action.showAllEditors" + }, + { "key": "shift+alt+j", "command": "workbench.action.focusNextPart" }, @@ -169,6 +173,7 @@ "command": "-workbench.action.terminal.openNativeConsole", "when": "!terminalFocus" }, + // panel navigation-ish { "key": "shift+alt+[", "command": "workbench.action.previousPanelView" @@ -204,5 +209,46 @@ { "key": "shift+alt+b right", "command": "workbench.action.toggleAuxiliaryBar" - } -] + }, + // zen mode (editor + status bar only) + { + "key": "shift+alt+b up", + "command": "runCommands", + "args": { + "commands": [ + "workbench.action.toggleZenMode" + ] + }, + "when": "!inZenMode" + }, + { + "key": "shift+alt+b up", + "command": "runCommands", + "args": { + "commands": [ + "workbench.action.toggleZenMode", + ] + }, + "when": "inZenMode" + }, + { + "key": "shift+alt+b k", + "command": "runCommands", + "args": { + "commands": [ + "workbench.action.toggleZenMode", + ] + }, + "when": "!inZenMode" + }, + { + "key": "shift+alt+b k", + "command": "runCommands", + "args": { + "commands": [ + "workbench.action.toggleZenMode", + ] + }, + "when": "inZenMode" + }, +]
\ 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 @@ "python.terminal.activateEnvironment": false, "[nim]": { "editor.defaultFormatter": "arnetheduck.vscode-nph" - } + }, + "zenMode.centerLayout": false, + "zenMode.fullScreen": false, + "zenMode.hideActivityBar": true, + "zenMode.hideLineNumbers": false, + "zenMode.hideStatusBar": false, + "zenMode.restore": true, + "zenMode.showTabs": "none", + "zenMode.silentNotifications": false }
\ No newline at end of file |
