From cac4eadca01d669d31345993d5067b33a4311fdc Mon Sep 17 00:00:00 2001 From: nicm Date: Sun, 19 Aug 2018 20:13:07 +0000 Subject: Add a flag to force redrawing of the status line even if the content hasn't changed, needed for resizing. --- tmux.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index f2baca38..9884f60a 100644 --- a/tmux.h +++ b/tmux.h @@ -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; -- cgit