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

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/55
This commit is contained in:
Victor Westerlund 2025-10-25 15:04:49 +02:00
parent 0d0c0adaa7
commit 8554ffdafa
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
} }