diff options
author | nicm <nicm> | 2015-01-20 08:18:04 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-01-20 08:18:04 +0000 |
commit | 16bdd970dcc68e50f26c512b3ead628b9b899c88 (patch) | |
tree | 62d7c4b928766cfc532ab197adf4482116439d1b /tty-term.c | |
parent | d45150267656530b8503375555a1814fcfe6a15a (diff) | |
download | rtmux-16bdd970dcc68e50f26c512b3ead628b9b899c88.tar.gz rtmux-16bdd970dcc68e50f26c512b3ead628b9b899c88.tar.bz2 rtmux-16bdd970dcc68e50f26c512b3ead628b9b899c88.zip |
Support blinking cursor mode, both the xterm CSI ?12 h/l and (the
backwards) screen CSI 34 h/l. From Guanpeng Xu.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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" }, |