Ensure ghostty + alacritty can also use the new tmux extended keys for panes

This commit is contained in:
David Heinemeier Hansson
2026-05-25 11:47:45 +02:00
parent e9d275298d
commit 8ad51075c3
3 changed files with 34 additions and 2 deletions
+3 -1
View File
@@ -21,5 +21,7 @@ decorations = "None"
bindings = [
{ key = "Insert", mods = "Shift", action = "Paste" },
{ key = "Insert", mods = "Control", action = "Copy" },
{ key = "Return", mods = "Shift", chars = "\u001B\r" }
{ key = "Return", mods = "Shift", chars = "\u001B\r" },
# Legacy encoding sends Alt+Shift+Return the same as Alt+Return; send CSI-u so tmux can match M-S-Enter.
{ key = "Return", mods = "Alt|Shift", chars = "\u001B[13;4u" }
]