diff options
| author | kj_sh604 | 2025-12-10 21:12:00 -0500 |
|---|---|---|
| committer | kj_sh604 | 2025-12-10 21:12:00 -0500 |
| commit | 866f563bf7f76b718bc18ffb053702c893e9de0e (patch) | |
| tree | b7434a0a686e1b71ccf0e98da1ae24b328686636 /.config/Code/User | |
| parent | 25a2cfac24903a40d9bc609f8eb7ca86fe7eb8b7 (diff) | |
refactor: pane shortcuts
Diffstat (limited to '.config/Code/User')
| -rw-r--r-- | .config/Code/User/keybindings.json | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index d505acd..728b7d2 100644 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json @@ -117,5 +117,21 @@ { "key": "alt+f11 s", "command": "cSpell.toggleEnableSpellChecker" - } + }, + { + "key": "ctrl+w ctrl+j", + "command": "workbench.action.focusNextPart" + }, + { + "key": "ctrl+w k", + "command": "workbench.action.focusPreviousPart" + }, + { + "key": "ctrl+w ctrl+k", + "command": "workbench.action.focusPreviousPart" + }, + { + "key": "ctrl+w j", + "command": "workbench.action.focusNextPart" + }, ] |
