From 79f09b4d855b2339db2c859266135ab1b6368a61 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 5 Aug 2019 06:42:02 +0000 Subject: Add support for the SD (scroll down) escape sequence, GitHub issue 1861. --- tty-term.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tty-term.c') diff --git a/tty-term.c b/tty-term.c index eabadf6b..182edd7d 100644 --- a/tty-term.c +++ b/tty-term.c @@ -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" }, -- cgit