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 /tmux.h | |
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 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -175,6 +175,7 @@ enum tty_code_code { TTYC_CUP, /* cursor_address, cm */ TTYC_CUU, /* parm_up_cursor, UP */ TTYC_CUU1, /* cursor_up, up */ + TTYC_CVVIS, /* cursor_visible, vs */ TTYC_DCH, /* parm_dch, DC */ TTYC_DCH1, /* delete_character, dc */ TTYC_DIM, /* enter_dim_mode, mh */ @@ -600,7 +601,7 @@ struct mode_key_table { #define MODE_WRAP 0x10 /* whether lines wrap */ #define MODE_MOUSE_STANDARD 0x20 #define MODE_MOUSE_BUTTON 0x40 -/* 0x80 unused */ +#define MODE_BLINKING 0x80 #define MODE_MOUSE_UTF8 0x100 #define MODE_MOUSE_SGR 0x200 #define MODE_BRACKETPASTE 0x400 |