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).
This commit is contained in:
Peter Tripp 2025-02-24 13:43:15 -05:00 committed by GitHub
parent ff6844300e
commit 64756fa96f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",