diff options
Diffstat (limited to '.config/Code/User/keybindings.json')
| -rw-r--r-- | .config/Code/User/keybindings.json | 50 |
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 |
