diff options
| author | kj_sh604 | 2026-02-22 13:48:39 -0500 |
|---|---|---|
| committer | kj_sh604 | 2026-02-22 13:48:39 -0500 |
| commit | 0a60d8b02be5dc6044fd57c0dfdf03eaa7edaaaa (patch) | |
| tree | 0d7a085411c4d335c0e3c97ad820aac795b125d8 /.config/Code/User/keybindings.json | |
| parent | ebeda55ccbf1912b22f979bf6394559b2494965c (diff) | |
refactor: add tab bar keybind
Diffstat (limited to '.config/Code/User/keybindings.json')
| -rw-r--r-- | .config/Code/User/keybindings.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index 82cfb4c..274e36f 100644 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json @@ -214,4 +214,24 @@ "key": "shift+alt+c", "command": "toggle.window.commandCenter" }, + { + "key": "shift+alt+b k", + "command": "workbench.action.hideEditorTabs", + "when": "editorTabsVisible" + }, + { + "key": "shift+alt+b k", + "command": "workbench.action.showMultipleEditorTabs", + "when": "!editorTabsVisible" + }, + { + "key": "shift+alt+b up", + "command": "workbench.action.hideEditorTabs", + "when": "editorTabsVisible" + }, + { + "key": "shift+alt+b up", + "command": "workbench.action.showMultipleEditorTabs", + "when": "!editorTabsVisible" + } ]
\ No newline at end of file |
