mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 08:07:03 +00:00
Ignore clients that are suspended or exiting.
This commit is contained in:
13
tmux.h
13
tmux.h
@ -1357,11 +1357,16 @@ struct client {
|
||||
#define CLIENT_SIZECHANGED 0x400000
|
||||
#define CLIENT_STATUSOFF 0x800000
|
||||
#define CLIENT_REDRAWSTATUSALWAYS 0x1000000
|
||||
#define CLIENT_ALLREDRAWFLAGS \
|
||||
(CLIENT_REDRAWWINDOW| \
|
||||
CLIENT_REDRAWSTATUS| \
|
||||
CLIENT_REDRAWSTATUSALWAYS| \
|
||||
#define CLIENT_ALLREDRAWFLAGS \
|
||||
(CLIENT_REDRAWWINDOW| \
|
||||
CLIENT_REDRAWSTATUS| \
|
||||
CLIENT_REDRAWSTATUSALWAYS| \
|
||||
CLIENT_REDRAWBORDERS)
|
||||
#define CLIENT_NOSIZEFLAGS \
|
||||
(CLIENT_EXIT| \
|
||||
CLIENT_DEAD| \
|
||||
CLIENT_SUSPENDED| \
|
||||
CLIENT_DETACHING)
|
||||
int flags;
|
||||
struct key_table *keytable;
|
||||
|
||||
|
Reference in New Issue
Block a user