diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-11-14 16:01:25 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-11-14 16:01:25 +0000 |
commit | b67fd8f47265633d20ce01f4d2eae0774623afd6 (patch) | |
tree | ec60502aa103abe3486dd0cab84a5e439fd2e1a8 /tmux.h | |
parent | 518a687886456baeb397bdc751beb1ad682a3e6a (diff) | |
parent | 16b77194182569cad8f34a4cf1fa494409900236 (diff) | |
download | rtmux-b67fd8f47265633d20ce01f4d2eae0774623afd6.tar.gz rtmux-b67fd8f47265633d20ce01f4d2eae0774623afd6.tar.bz2 rtmux-b67fd8f47265633d20ce01f4d2eae0774623afd6.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 { |