+
Settings
diff --git a/packages/contracts/src/keybindings.ts b/packages/contracts/src/keybindings.ts
index 502e564fb8..473c1405e1 100644
--- a/packages/contracts/src/keybindings.ts
+++ b/packages/contracts/src/keybindings.ts
@@ -54,6 +54,7 @@ const STATIC_KEYBINDING_COMMANDS = [
"terminal.close",
"diff.toggle",
"commandPalette.toggle",
+ "sidebar.toggle",
"chat.new",
"chat.newLocal",
"editor.openFavorite",
diff --git a/packages/shared/src/keybindings.ts b/packages/shared/src/keybindings.ts
index 3cc2e91362..5e476b0040 100644
--- a/packages/shared/src/keybindings.ts
+++ b/packages/shared/src/keybindings.ts
@@ -25,6 +25,7 @@ export const DEFAULT_KEYBINDINGS: ReadonlyArray = [
{ key: "mod+w", command: "terminal.close", when: "terminalFocus" },
{ key: "mod+d", command: "diff.toggle", when: "!terminalFocus" },
{ key: "mod+k", command: "commandPalette.toggle", when: "!terminalFocus" },
+ { key: "mod+b", command: "sidebar.toggle", when: "!terminalFocus" },
{ key: "mod+n", command: "chat.new", when: "!terminalFocus" },
{ key: "mod+shift+o", command: "chat.new", when: "!terminalFocus" },
{ key: "mod+shift+n", command: "chat.newLocal", when: "!terminalFocus" },