From 50ee41423f6f7b4c0bc83ecf9468a37fc8bf9e99 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 11 Jun 2020 09:55:47 +0000 Subject: Add a -A option to pause a pane manually. --- cmd-refresh-client.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd-refresh-client.c') 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); -- cgit