From 64756fa96f69a3b1e6506cbfe4832a8293b84e7e Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Mon, 24 Feb 2025 13:43:15 -0500 Subject: [PATCH] Fix tmux being broken by default on Linux (#25476) Tmux uses `ctrl-b` as default prefix. Prior to this tmux was basically useless in the default zed configuration. (ctrl-b would toggle the left dock). --- assets/keymaps/default-linux.json | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/keymaps/default-linux.json b/assets/keymaps/default-linux.json index 1893ef6e13..2ff6ba3327 100644 --- a/assets/keymaps/default-linux.json +++ b/assets/keymaps/default-linux.json @@ -813,6 +813,7 @@ "pagedown": ["terminal::SendKeystroke", "pagedown"], "escape": ["terminal::SendKeystroke", "escape"], "enter": ["terminal::SendKeystroke", "enter"], + "ctrl-b": ["terminal::SendKeystroke", "ctrl-b"], "ctrl-c": ["terminal::SendKeystroke", "ctrl-c"], "shift-pageup": "terminal::ScrollPageUp", "shift-pagedown": "terminal::ScrollPageDown",