diff options
| author | kj_sh604 | 2025-12-10 21:24:16 -0500 |
|---|---|---|
| committer | kj_sh604 | 2025-12-10 21:24:16 -0500 |
| commit | 9b8951ea375a01e76740280e416401139ba3556e (patch) | |
| tree | 9cde6a3f4e3fe66686a40e357d5229b636b54f1b /.config/Code | |
| parent | 866f563bf7f76b718bc18ffb053702c893e9de0e (diff) | |
refactor: terminal and panel shortcuts
Diffstat (limited to '.config/Code')
| -rw-r--r-- | .config/Code/User/keybindings.json | 26 |
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 @@ "command": "cSpell.toggleEnableSpellChecker" }, { - "key": "ctrl+w ctrl+j", + "key": "alt+a j", "command": "workbench.action.focusNextPart" }, { - "key": "ctrl+w k", + "key": "alt+a alt+j", + "command": "workbench.action.focusNextPart" + }, + { + "key": "alt+a k", "command": "workbench.action.focusPreviousPart" }, { - "key": "ctrl+w ctrl+k", + "key": "alt+a alt+k", "command": "workbench.action.focusPreviousPart" }, { - "key": "ctrl+w j", - "command": "workbench.action.focusNextPart" + "key": "shift+alt+t", + "command": "workbench.action.terminal.toggleTerminal", + "when": "terminal.active" + }, + { + "key": "ctrl+`", + "command": "-workbench.action.terminal.toggleTerminal", + "when": "terminal.active" + }, + { + "key": "shift+alt+p", + "command": "workbench.action.togglePanel" }, -] +]
\ No newline at end of file |
