Properties5
| Type | Article |
| Author | joshmedeski.com |
| Date | Jul 16, 2021 |
| URL | https://www.joshmedeski.com/posts/macos-keyboard-shortcuts-for-tmux/ |
| Note created | Jul 16, 2021 |
![]()
In order to simulate a keystroke, Alacritty uses hex codes, which is simply a combination of characters. For our example, we need to get the hex code values for
<ctrl+b> c. We will usexxdto record our keystrokes and dump the hex codes we need. First run the following command (outside of tmux): xxd -psd Then typectrl+b,c, then press the return key (akaenter). You will see the following data output in your terminal: ^Bc 02630a Pressctrl+cto escape the xxd listener. You now have the hex code02630a, which stands forctrl+b c return.