Add a flag to force redrawing of the status line even if the content

hasn't changed, needed for resizing.
This commit is contained in:
nicm
2018-08-19 20:13:07 +00:00
parent d95fad3d5f
commit cac4eadca0
3 changed files with 23 additions and 10 deletions

6
tmux.h
View File

@ -1350,8 +1350,12 @@ struct client {
#define CLIENT_TRIPLECLICK 0x200000
#define CLIENT_SIZECHANGED 0x400000
#define CLIENT_STATUSOFF 0x800000
#define CLIENT_REDRAWSTATUSALWAYS 0x1000000
#define CLIENT_ALLREDRAWFLAGS \
(CLIENT_REDRAWWINDOW|CLIENT_REDRAWSTATUS|CLIENT_REDRAWBORDERS)
(CLIENT_REDRAWWINDOW| \
CLIENT_REDRAWSTATUS| \
CLIENT_REDRAWSTATUSALWAYS| \
CLIENT_REDRAWBORDERS)
int flags;
struct key_table *keytable;