From 9de31ba54e48b02f17f108dbf070a4516271b8bd Mon Sep 17 00:00:00 2001 From: Max Amundsen <109674749+maxamundsen@users.noreply.github.com> Date: Tue, 10 Feb 2026 19:43:05 -0500 Subject: [PATCH] Update keybindings for zoom and sidebar commands --- .config/Code/User/keybindings.json | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json index 9f49b49..7125037 100644 --- a/.config/Code/User/keybindings.json +++ b/.config/Code/User/keybindings.json @@ -4,26 +4,50 @@ "key": "cmd+=", "command": "-workbench.action.zoomIn" }, + { + "key": "ctrl+=", + "command": "-workbench.action.zoomIn" + }, { "key": "cmd+=", "command": "editor.action.fontZoomIn" }, + { + "key": "ctrl+=", + "command": "editor.action.fontZoomIn" + }, { "key": "cmd+-", "command": "editor.action.fontZoomOut" }, + { + "key": "ctrl+-", + "command": "editor.action.fontZoomOut" + }, { "key": "cmd+-", "command": "-workbench.action.zoomOut" }, + { + "key": "ctrl+-", + "command": "-workbench.action.zoomOut" + }, { "key": "cmd+0", "command": "editor.action.fontZoomReset" }, + { + "key": "ctrl+0", + "command": "editor.action.fontZoomReset" + }, { "key": "cmd+0", "command": "-workbench.action.focusSideBar" }, + { + "key": "ctrl+0", + "command": "-workbench.action.focusSideBar" + }, { "key": "cmd+g", "command": "workbench.action.gotoLine" @@ -32,10 +56,18 @@ "key": "ctrl+g", "command": "-workbench.action.gotoLine" }, + { + "key": "ctrl+g", + "command": "workbench.action.gotoLine" + }, { "key": "cmd+shift+a", "command": "editor.action.selectHighlights" }, + { + "key": "ctrl+shift+a", + "command": "editor.action.selectHighlights" + }, { "key": "F7", "command": "editor.action.format" @@ -51,6 +83,17 @@ ] } }, + { + "key": "ctrl+\\", + "command": "runCommands", + "args": { + "commands": [ + "workbench.action.closeSidebar", + "workbench.action.closeAuxiliaryBar", + "workbench.action.closePanel", + ] + } + }, { "key": "cmd+shift+\\", "command": "runCommands", @@ -64,10 +107,27 @@ ] } }, + { + "key": "ctrl+shift+\\", + "command": "runCommands", + "args": { + "commands": [ + "workbench.action.closeSidebar", + "workbench.action.closeAuxiliaryBar", + "workbench.action.closePanel", + "workbench.action.closeEditorsInOtherGroups", + "workbench.action.closeOtherEditors" + ] + } + }, { "key": "alt+cmd+backspace", "command": "-editor.action.removeBrackets", }, + { + "key": "alt+ctrl+backspace", + "command": "-editor.action.removeBrackets", + }, { "key": "f6", "command": "editor.action.organizeImports", @@ -84,6 +144,10 @@ "key": "shift+cmd+m", "command": "-workbench.actions.view.problems", }, + { + "key": "shift+ctrl+m", + "command": "-workbench.actions.view.problems", + }, { "key": "f3", "command": "workbench.action.toggleLightDarkThemes" @@ -91,5 +155,9 @@ { "key": "shift+cmd+/", "command": "claude-vscode.sidebar.open" + }, + { + "key": "shift+ctrl+/", + "command": "claude-vscode.sidebar.open" } ]