summaryrefslogtreecommitdiffstats
path: root/tty-term.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-05-20 19:17:39 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-05-20 19:17:39 +0000
commit3ea5e06bfb04278fa53885e551bc363a84bad8d1 (patch)
tree155061457c80262457ba005863c44df9aaeeb8c5 /tty-term.c
parent944b5e6fa04e014501f465e3898315c84d10bd9e (diff)
Support DECSCUSR sequence to set the cursor style with two new
terminfo(5) extensions, Cs and Csr. Written by Ailin Nemui.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tty-term.c b/tty-term.c
index 7083e2ab..41cb97c4 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -44,7 +44,9 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = {
{ TTYC_CNORM, TTYCODE_STRING, "cnorm" },
{ TTYC_COLORS, TTYCODE_NUMBER, "colors" },
{ TTYC_CR, TTYCODE_STRING, "Cr" },
+ { TTYC_CS1, TTYCODE_STRING, "Cs" },
{ TTYC_CSR, TTYCODE_STRING, "csr" },
+ { TTYC_CSR1, TTYCODE_STRING, "Csr" },
{ TTYC_CUB, TTYCODE_STRING, "cub" },
{ TTYC_CUB1, TTYCODE_STRING, "cub1" },
{ TTYC_CUD, TTYCODE_STRING, "cud" },