diff options
author | 2019-05-13 20:10:23 +0000 | |
---|---|---|
committer | 2019-05-13 20:10:23 +0000 | |
commit | d37269ef36fa6f867093ec825e7013d703d7e218 (patch) | |
tree | fe5b00ca4e52ecd24a8c376479f4eb0a9e1e9936 /usr.bin/tmux/tmux.h | |
parent | Always include Lock in the menu. (diff) | |
download | wireguard-openbsd-d37269ef36fa6f867093ec825e7013d703d7e218.tar.xz wireguard-openbsd-d37269ef36fa6f867093ec825e7013d703d7e218.zip |
Add support for overline (SGR 53), from Ricardo Banffy.
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 85edb564746..55aef4e1020 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.897 2019/05/12 08:58:09 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.898 2019/05/13 20:10:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -431,6 +431,7 @@ enum tty_code_code { TTYC_SITM, TTYC_SMACS, TTYC_SMCUP, + TTYC_SMOL, TTYC_SMKX, TTYC_SMSO, TTYC_SMULX, @@ -568,6 +569,7 @@ enum utf8_state { #define GRID_ATTR_UNDERSCORE_3 0x400 #define GRID_ATTR_UNDERSCORE_4 0x800 #define GRID_ATTR_UNDERSCORE_5 0x1000 +#define GRID_ATTR_OVERLINE 0x2000 /* All underscore attributes. */ #define GRID_ATTR_ALL_UNDERSCORE \ |