diff options
author | nicm <nicm> | 2022-11-11 08:37:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-11-11 08:37:55 +0000 |
commit | fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c (patch) | |
tree | ba0e97250decc80f35884724c7cbf57b980aa935 /tmux.h | |
parent | 079f48e8a6131b2ef46b370c0905252d29d9d815 (diff) | |
download | rtmux-fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c.tar.gz rtmux-fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c.tar.bz2 rtmux-fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c.zip |
Parse primary device attributes as well as secondary and add a SIXEL
flag (not used yet), from Anindya Mukherjee.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -543,6 +543,7 @@ enum tty_code_code { TTYC_SMUL, TTYC_SMULX, TTYC_SMXX, + TTYC_SXL, TTYC_SS, TTYC_SWD, TTYC_SYNC, @@ -1349,6 +1350,7 @@ struct tty_term { #define TERM_DECFRA 0x8 #define TERM_RGBCOLOURS 0x10 #define TERM_VT100LIKE 0x20 +#define TERM_SIXEL 0x40 int flags; LIST_ENTRY(tty_term) entry; @@ -1405,9 +1407,10 @@ struct tty { #define TTY_OPENED 0x20 #define TTY_OSC52QUERY 0x40 #define TTY_BLOCK 0x80 -#define TTY_HAVEDA 0x100 +#define TTY_HAVEDA 0x100 /* Primary DA. */ #define TTY_HAVEXDA 0x200 #define TTY_SYNCING 0x400 +#define TTY_HAVEDA2 0x800 /* Seconday DA. */ int flags; struct tty_term *term; |