From 16bdd970dcc68e50f26c512b3ead628b9b899c88 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 20 Jan 2015 08:18:04 +0000 Subject: Support blinking cursor mode, both the xterm CSI ?12 h/l and (the backwards) screen CSI 34 h/l. From Guanpeng Xu. --- 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 f866a2d8..c8a6ba8b 100644 --- a/tty-term.c +++ b/tty-term.c @@ -54,6 +54,7 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = { { TTYC_CUP, TTYCODE_STRING, "cup" }, { TTYC_CUU, TTYCODE_STRING, "cuu" }, { TTYC_CUU1, TTYCODE_STRING, "cuu1" }, + { TTYC_CVVIS, TTYCODE_STRING, "cvvis" }, { TTYC_DCH, TTYCODE_STRING, "dch" }, { TTYC_DCH1, TTYCODE_STRING, "dch1" }, { TTYC_DIM, TTYCODE_STRING, "dim" }, -- cgit