aboutsummaryrefslogtreecommitdiff
path: root/.config/Code/User/keybindings.json
diff options
context:
space:
mode:
authorkj_sh6042026-02-22 05:33:45 -0500
committerkj_sh6042026-02-22 05:33:45 -0500
commit12bdabfa9bb73f4563482a929856246da3431442 (patch)
tree9ab0860b3704455803d33304c9b23c251bdd8134 /.config/Code/User/keybindings.json
parentc919bd563494eea27ba6116e7d4868673b28cd44 (diff)
refactor: config and keybind changes for panel toggles
Diffstat (limited to '.config/Code/User/keybindings.json')
-rw-r--r--.config/Code/User/keybindings.json50
1 files changed, 48 insertions, 2 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