diff options
author | nicm <nicm> | 2019-08-05 06:42:02 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-08-26 17:28:24 +0100 |
commit | 79f09b4d855b2339db2c859266135ab1b6368a61 (patch) | |
tree | c5ea8f88c382bdecf9b1b47ece54dc7b27df561d /tty-term.c | |
parent | e85ea9f67dcecab91599a658ad694d8e08514509 (diff) | |
download | rtmux-79f09b4d855b2339db2c859266135ab1b6368a61.tar.gz rtmux-79f09b4d855b2339db2c859266135ab1b6368a61.tar.bz2 rtmux-79f09b4d855b2339db2c859266135ab1b6368a61.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
@@ -242,6 +242,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" }, |