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 /tty-term.c | |
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 'tty-term.c')
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -86,6 +86,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_DIM] = { TTYCODE_STRING, "dim" }, [TTYC_DL1] = { TTYCODE_STRING, "dl1" }, [TTYC_DL] = { TTYCODE_STRING, "dl" }, + [TTYC_DSEKS] = { TTYCODE_STRING, "Dseks" }, [TTYC_DSFCS] = { TTYCODE_STRING, "Dsfcs" }, [TTYC_DSBP] = { TTYCODE_STRING, "Dsbp" }, [TTYC_DSMG] = { TTYCODE_STRING, "Dsmg" }, @@ -96,6 +97,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_EL] = { TTYCODE_STRING, "el" }, [TTYC_ENACS] = { TTYCODE_STRING, "enacs" }, [TTYC_ENBP] = { TTYCODE_STRING, "Enbp" }, + [TTYC_ENEKS] = { TTYCODE_STRING, "Eneks" }, [TTYC_ENFCS] = { TTYCODE_STRING, "Enfcs" }, [TTYC_ENMG] = { TTYCODE_STRING, "Enmg" }, [TTYC_FSL] = { TTYCODE_STRING, "fsl" }, |