diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-15 16:15:24 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-15 16:15:24 +0100 |
commit | 6d92b99dbcb6a616c88df1e6abbae0a96296e7a4 (patch) | |
tree | e06f36ddb1bb6a8c9e7dc977c8e5238cd3124e94 /tmux.h | |
parent | e6b17e77dbb4a757ca17d36086d7d64f097a361a (diff) | |
download | rtmux-6d92b99dbcb6a616c88df1e6abbae0a96296e7a4.tar.gz rtmux-6d92b99dbcb6a616c88df1e6abbae0a96296e7a4.tar.bz2 rtmux-6d92b99dbcb6a616c88df1e6abbae0a96296e7a4.zip |
Add a terminal feature for enable/disable extended keys (supported by xterm and
mintty) and add an option to make tmux send it.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -292,6 +292,7 @@ enum tty_code_code { TTYC_DL, TTYC_DL1, TTYC_DSBP, + TTYC_DSEKS, TTYC_DSFCS, TTYC_DSMG, TTYC_E3, @@ -301,6 +302,7 @@ enum tty_code_code { TTYC_EL1, TTYC_ENACS, TTYC_ENBP, + TTYC_ENEKS, TTYC_ENFCS, TTYC_ENMG, TTYC_FSL, @@ -1286,7 +1288,7 @@ struct tty { /* 0x8 unused */ #define TTY_STARTED 0x10 #define TTY_OPENED 0x20 -#define TTY_FOCUS 0x40 +/* 0x40 unused */ #define TTY_BLOCK 0x80 #define TTY_HAVEDA 0x100 #define TTY_HAVEXDA 0x200 |