From 02aa9d2d2ffaf6fb967cb5cff61eb52d18bf3848 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 8 Feb 2021 08:33:55 +0000 Subject: 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(-) (limited to 'usr.bin/tmux/server-client.c') 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) -- cgit v1.2.3