From 00499aadd452cacf074ccaeabd0c9e11fdbaa8a1 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 26 Jun 2025 11:35:02 -0300 Subject: [PATCH] Add back default keybindings to Burn Mode and branch picker toggles (#33452) Follow up to https://github.com/zed-industries/zed/pull/33190, as they were removed because of conflict with VS Code's usage of those bindings to toggle the right dock. `cmd-ctrl-b` seems like a safe alternative. Note that this PR is macOS only, though. I couldn't find yet any good options for Linux as they were all mostly conflicting with something else. Release Notes: - N/A --- assets/keymaps/default-macos.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/keymaps/default-macos.json b/assets/keymaps/default-macos.json index 06f8078279..51f4ffe23f 100644 --- a/assets/keymaps/default-macos.json +++ b/assets/keymaps/default-macos.json @@ -283,6 +283,7 @@ "cmd->": "assistant::QuoteSelection", "cmd-alt-e": "agent::RemoveAllContext", "cmd-shift-e": "project_panel::ToggleFocus", + "cmd-ctrl-b": "agent::ToggleBurnMode", "cmd-shift-enter": "agent::ContinueThread", "alt-enter": "agent::ContinueWithBurnMode" } @@ -587,6 +588,7 @@ "alt-cmd-o": ["projects::OpenRecent", { "create_new_window": false }], "ctrl-cmd-o": ["projects::OpenRemote", { "from_existing_connection": false, "create_new_window": false }], "ctrl-cmd-shift-o": ["projects::OpenRemote", { "from_existing_connection": true, "create_new_window": false }], + "cmd-ctrl-b": "branches::OpenRecent", "ctrl-~": "workspace::NewTerminal", "cmd-s": "workspace::Save", "cmd-k s": "workspace::SaveWithoutFormat",