Created
January 10, 2020 21:16
-
-
Save ipatch/514e60d8eae01d7e461e68305d96316d to your computer and use it in GitHub Desktop.
my tmux confusion 🤨
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bind-key -n F12 display "F12 pressed" # no prefix key required | |
| bind -n F12 display "F12 pressed" # requires prefix key before displaying message in status bar | |
| # if i use `bind-key` instead of `bind` i can press `fn + F12` and see the message displayed in the status bar | |
| # but if i use `bind` i have to press my `prefix` key first before pressing `fn + F12` to see the message displayed | |
| # ...in the status bar even if i have the `-n` option set. | |
| # i thought `bind` was alias to `bind-key` am i mistaken about this? | |
| # os = macOS 10.13.6 | |
| # computer = macbook pro, hence the reason i have to press `fn + f12` | |
| # tmux = 3.0a installed via brew |
Author
ipatch
commented
Jan 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment