diff options
author | 2020-05-16 14:39:40 +0000 | |
---|---|---|
committer | 2020-05-16 14:39:40 +0000 | |
commit | ed2e005d91df5d95a32ef459c88cff2778e36cd6 (patch) | |
tree | 50eb030e96c3732e72843bb9d0c6e503a0694a2a /usr.bin/tmux/tmux.h | |
parent | Add a feature for bracketed paste. (diff) | |
download | wireguard-openbsd-ed2e005d91df5d95a32ef459c88cff2778e36cd6.tar.xz wireguard-openbsd-ed2e005d91df5d95a32ef459c88cff2778e36cd6.zip |
Add feature and capabilities for focus reporting. Also document AX and
XT even though they aren't tmux's, and add some bits for rxvt.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 02f229aa87e..2f2a6477406 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1020 2020/05/16 14:34:44 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1021 2020/05/16 14:39:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -280,6 +280,7 @@ enum tty_code_code { TTYC_DL, TTYC_DL1, TTYC_DSBP, + TTYC_DSFCS, TTYC_DSMG, TTYC_E3, TTYC_ECH, @@ -288,6 +289,7 @@ enum tty_code_code { TTYC_EL1, TTYC_ENACS, TTYC_ENBP, + TTYC_ENFCS, TTYC_ENMG, TTYC_FSL, TTYC_HOME, |