summaryrefslogtreecommitdiffstats
path: root/cmd-refresh-client.c
diff options
context:
space:
mode:
authornicm <nicm>2020-06-11 09:55:47 +0000
committernicm <nicm>2020-06-11 09:55:47 +0000
commit50ee41423f6f7b4c0bc83ecf9468a37fc8bf9e99 (patch)
treed2c7dec252a8331249a05f5b1d1b7f61e4537579 /cmd-refresh-client.c
parent23d79cfda87f822c7440fd572ce5fc440c079ac2 (diff)
Add a -A option to pause a pane manually.
Diffstat (limited to 'cmd-refresh-client.c')
-rw-r--r--cmd-refresh-client.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd-refresh-client.c b/cmd-refresh-client.c
index bbe0c736..f7b6269b 100644
--- a/cmd-refresh-client.c
+++ b/cmd-refresh-client.c
@@ -68,6 +68,8 @@ cmd_refresh_client_update_offset(struct client *tc, const char *value)
control_set_pane_off(tc, wp);
else if (strcmp(colon, "continue") == 0)
control_continue_pane(tc, wp);
+ else if (strcmp(colon, "pause") == 0)
+ control_pause_pane(tc, wp);
out:
free(copy);