How do I bind keypresses to tmux sequences? #3309
Answered
by
arzezak
joebonneau
asked this question in
Q&A
-
I have tmux keybindings that I have mapped to various utility functions, such as [[keyboard.bindings]]
chars = "\u0002T"
key = "K"
mods = "Command" or key_bindings:
- { key: K, mods: Command, chars: "\x02\x54" } I tried this in my Ghostty config with the following, which sends the final keypress (T) instead of triggering ctrl + b, then k:
How do I go about doing this? |
Beta Was this translation helpful? Give feedback.
Answered by
arzezak
Dec 27, 2024
Replies: 1 comment 1 reply
-
Did you try |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
joebonneau
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you try
keybind = cmd+k=text:\x02t
?