aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-11-14 16:01:25 +0000
committerThomas Adam <thomas@xteddy.org>2019-11-14 16:01:25 +0000
commitb67fd8f47265633d20ce01f4d2eae0774623afd6 (patch)
treeec60502aa103abe3486dd0cab84a5e439fd2e1a8 /tmux.h
parent518a687886456baeb397bdc751beb1ad682a3e6a (diff)
parent16b77194182569cad8f34a4cf1fa494409900236 (diff)
downloadrtmux-b67fd8f47265633d20ce01f4d2eae0774623afd6.tar.gz
rtmux-b67fd8f47265633d20ce01f4d2eae0774623afd6.tar.bz2
rtmux-b67fd8f47265633d20ce01f4d2eae0774623afd6.zip
Merge branch 'obsd-master'
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 5540ad4a..44af8c25 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1204,6 +1204,7 @@ struct tty {
TTY_VT220,
TTY_VT320,
TTY_VT420,
+ TTY_VT520,
TTY_UNKNOWN
} term_type;
@@ -1220,7 +1221,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 {