diff options
author | 2021-02-08 08:33:54 +0000 | |
---|---|---|
committer | 2021-02-08 08:33:54 +0000 | |
commit | 5415e555e68f6d0f6b82a97e7d06fce49a0be394 (patch) | |
tree | 48dd274e8067c71d7152dab797a0b8f11387cbc4 /usr.bin/tmux/server-client.c | |
parent | Simplify sleep_setup API to two operations in preparation for splitting (diff) | |
download | wireguard-openbsd-5415e555e68f6d0f6b82a97e7d06fce49a0be394.tar.xz wireguard-openbsd-5415e555e68f6d0f6b82a97e7d06fce49a0be394.zip |
Include "focused" in client flags, from Dan Aloni in GitHub issue 2558.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r-- | usr.bin/tmux/server-client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c index 7241f9d1a84..9d5b3d6476c 100644 --- a/usr.bin/tmux/server-client.c +++ b/usr.bin/tmux/server-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-client.c,v 1.367 2021/01/18 11:14:23 nicm Exp $ */ +/* $OpenBSD: server-client.c,v 1.368 2021/02/08 08:33:54 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2454,6 +2454,8 @@ server_client_get_flags(struct client *c) *s = '\0'; if (c->flags & CLIENT_ATTACHED) strlcat(s, "attached,", sizeof s); + if (c->flags & CLIENT_FOCUSED) + strlcat(s, "focused,", sizeof s); if (c->flags & CLIENT_CONTROL) strlcat(s, "control-mode,", sizeof s); if (c->flags & CLIENT_IGNORESIZE) |