aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-11-14 15:37:19 +0000
committernicm <nicm>2019-11-14 15:37:19 +0000
commit16b77194182569cad8f34a4cf1fa494409900236 (patch)
treefcc3005dd69015053785eb6aa2357de651beabde /tmux.h
parent2dbf062a891e992b438a0923b9ffd79638014872 (diff)
downloadrtmux-16b77194182569cad8f34a4cf1fa494409900236.tar.gz
rtmux-16b77194182569cad8f34a4cf1fa494409900236.tar.bz2
rtmux-16b77194182569cad8f34a4cf1fa494409900236.zip
Fix parsing of DA with only one argument in the response and add 65 for VT520.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index a68c7cbf..894a9820 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1202,6 +1202,7 @@ struct tty {
TTY_VT220,
TTY_VT320,
TTY_VT420,
+ TTY_VT520,
TTY_UNKNOWN
} term_type;
@@ -1218,7 +1219,14 @@ struct tty {
struct tty_key *key_tree;
};
#define TTY_TYPES \
- { "VT100", "VT101", "VT102", "VT220", "VT320", "VT420", "Unknown" }
+ { "VT100", \
+ "VT101", \
+ "VT102", \
+ "VT220", \
+ "VT320", \
+ "VT420", \
+ "VT520", \
+ "Unknown" }
/* TTY command context. */
struct tty_ctx {