From 5415e555e68f6d0f6b82a97e7d06fce49a0be394 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 8 Feb 2021 08:33:54 +0000 Subject: [PATCH] Include "focused" in client flags, from Dan Aloni in GitHub issue 2558. --- usr.bin/tmux/server-client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 @@ -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) -- 2.20.1