diff options
author | nicm <nicm> | 2019-08-05 06:42:02 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-08-05 06:42:02 +0000 |
commit | 45f4ff54850ff9b448070a96b33e63451f973e33 (patch) | |
tree | e8a40ff8eb12263b801fb774582f6d3c8ac3f6e9 /tty-term.c | |
parent | c4744620af18de13d4a2981b78992ae9ddfd937a (diff) | |
download | rtmux-45f4ff54850ff9b448070a96b33e63451f973e33.tar.gz rtmux-45f4ff54850ff9b448070a96b33e63451f973e33.tar.bz2 rtmux-45f4ff54850ff9b448070a96b33e63451f973e33.zip |
Add support for the SD (scroll down) escape sequence, GitHub issue 1861.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -239,6 +239,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_REV] = { TTYCODE_STRING, "rev" }, [TTYC_RGB] = { TTYCODE_FLAG, "RGB" }, [TTYC_RI] = { TTYCODE_STRING, "ri" }, + [TTYC_RIN] = { TTYCODE_STRING, "rin" }, [TTYC_RMACS] = { TTYCODE_STRING, "rmacs" }, [TTYC_RMCUP] = { TTYCODE_STRING, "rmcup" }, [TTYC_RMKX] = { TTYCODE_STRING, "rmkx" }, |