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 | |
| parent | ebeda55ccbf1912b22f979bf6394559b2494965c (diff) | |
refactor: add tab bar keybind
| -rw-r--r-- | .config/Code/User/keybindings.json | 20 | ||||
| -rw-r--r-- | .config/Code/User/settings.json | 1 |
2 files changed, 20 insertions, 1 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 @@ | |||
| 214 | "key": "shift+alt+c", | 214 | "key": "shift+alt+c", |
| 215 | "command": "toggle.window.commandCenter" | 215 | "command": "toggle.window.commandCenter" |
| 216 | }, | 216 | }, |
| 217 | { | ||
| 218 | "key": "shift+alt+b k", | ||
| 219 | "command": "workbench.action.hideEditorTabs", | ||
| 220 | "when": "editorTabsVisible" | ||
| 221 | }, | ||
| 222 | { | ||
| 223 | "key": "shift+alt+b k", | ||
| 224 | "command": "workbench.action.showMultipleEditorTabs", | ||
| 225 | "when": "!editorTabsVisible" | ||
| 226 | }, | ||
| 227 | { | ||
| 228 | "key": "shift+alt+b up", | ||
| 229 | "command": "workbench.action.hideEditorTabs", | ||
| 230 | "when": "editorTabsVisible" | ||
| 231 | }, | ||
| 232 | { | ||
| 233 | "key": "shift+alt+b up", | ||
| 234 | "command": "workbench.action.showMultipleEditorTabs", | ||
| 235 | "when": "!editorTabsVisible" | ||
| 236 | } | ||
| 217 | ] \ No newline at end of file | 237 | ] \ No newline at end of file |
diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index c26150a..9bea0e3 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json | |||
| @@ -311,7 +311,6 @@ | |||
| 311 | "editor.defaultFormatter": "arnetheduck.vscode-nph" | 311 | "editor.defaultFormatter": "arnetheduck.vscode-nph" |
| 312 | }, | 312 | }, |
| 313 | "workbench.activityBar.location": "top", | 313 | "workbench.activityBar.location": "top", |
| 314 | "workbench.editor.showTabs": "none", | ||
| 315 | "workbench.layoutControl.enabled": false, | 314 | "workbench.layoutControl.enabled": false, |
| 316 | "window.commandCenter": false | 315 | "window.commandCenter": false |
| 317 | } \ No newline at end of file | 316 | } \ No newline at end of file |
