summaryrefslogtreecommitdiffstats
path: root/tty-term.c
diff options
context:
space:
mode:
authornicm <nicm>2017-02-08 17:31:09 +0000
committernicm <nicm>2017-02-08 17:31:09 +0000
commite100d465daefd20da0bb5eea87c4b4896badff16 (patch)
treeff477fbaf93b7acbe2245fe02b1bbf906a6d159a /tty-term.c
parent13a0b6bb3fe05454cace81f5ec7624f6fd9021a5 (diff)
Add support for scroll up escape sequence (CSI S) and use it when
possible instead of sending individual line feeds.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tty-term.c b/tty-term.c
index 092f80f2..7707a576 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -95,6 +95,7 @@ static const struct tty_term_code_entry tty_term_codes[] = {
[TTYC_ICH1] = { TTYCODE_STRING, "ich1" },
[TTYC_IL] = { TTYCODE_STRING, "il" },
[TTYC_IL1] = { TTYCODE_STRING, "il1" },
+ [TTYC_INDN] = { TTYCODE_STRING, "indn" },
[TTYC_INVIS] = { TTYCODE_STRING, "invis" },
[TTYC_IS1] = { TTYCODE_STRING, "is1" },
[TTYC_IS2] = { TTYCODE_STRING, "is2" },