Add a -A option to pause a pane manually.

This commit is contained in:
nicm
2020-06-11 09:55:47 +00:00
parent 23d79cfda8
commit 50ee41423f
4 changed files with 25 additions and 3 deletions

View File

@ -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);