feat(code-server): add toggle maximize terminal keybind

This commit is contained in:
Victor Westerlund 2025-10-25 14:44:40 +02:00
parent 0d0c0adaa7
commit 9b9500684c
Signed by: vlw
GPG key ID: D0AD730E1057DFC6
2 changed files with 6 additions and 1 deletions

View file

@ -61,5 +61,9 @@
{ {
"key": "shift+alt+3", "key": "shift+alt+3",
"command": "bookmarks.clear" "command": "bookmarks.clear"
},
{
"key": "alt+q",
"command": "workbench.action.toggleMaximizedPanel"
} }
] ]

View file

@ -12,5 +12,6 @@
"hexeditor.inspectorType": "sidebar", "hexeditor.inspectorType": "sidebar",
"window.menuBarVisibility": "classic", "window.menuBarVisibility": "classic",
"workbench.startupEditor": "none", "workbench.startupEditor": "none",
"workbench.activityBar.location": "top" "workbench.activityBar.location": "top",
"workbench.panel.showLabels": false
} }