diff options
author | nicm <nicm> | 2020-05-16 16:44:54 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 16:44:54 +0000 |
commit | 0ab82d95314e7a26a48452c77ad710f3aff97dd7 (patch) | |
tree | 8a7439d2a3007bb7de92f6c8c801bb5303754fae /tty-term.c | |
parent | 292b335ca5b594729cf9ff79f0f4273c725537a4 (diff) | |
download | rtmux-0ab82d95314e7a26a48452c77ad710f3aff97dd7.tar.gz rtmux-0ab82d95314e7a26a48452c77ad710f3aff97dd7.tar.bz2 rtmux-0ab82d95314e7a26a48452c77ad710f3aff97dd7.zip |
Add a terminal feature for enable/disable extended keys (supported by
xterm and mintty) and add an option to make tmux send it. Only forward
extended keys if the application has requested them, even though we use
the CSI u sequence and xterm uses CSI 27 ~ - this is what mintty does as
well.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -83,6 +83,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" }, @@ -93,6 +94,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" }, |