diff options
author | 2020-06-11 09:55:47 +0000 | |
---|---|---|
committer | 2020-06-11 09:55:47 +0000 | |
commit | 1ec116cfcc71d18ee3d4d3f4ab449f97c0692a6d (patch) | |
tree | 81e57d601e47e801c386159fd6a85edb089ab068 /usr.bin/tmux/cmd-refresh-client.c | |
parent | Rename poll-compatibility flag to better reflect what it is. (diff) | |
download | wireguard-openbsd-1ec116cfcc71d18ee3d4d3f4ab449f97c0692a6d.tar.xz wireguard-openbsd-1ec116cfcc71d18ee3d4d3f4ab449f97c0692a6d.zip |
Add a -A option to pause a pane manually.
Diffstat (limited to 'usr.bin/tmux/cmd-refresh-client.c')
-rw-r--r-- | usr.bin/tmux/cmd-refresh-client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-refresh-client.c b/usr.bin/tmux/cmd-refresh-client.c index 35163d64cf4..aee99980f08 100644 --- a/usr.bin/tmux/cmd-refresh-client.c +++ b/usr.bin/tmux/cmd-refresh-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-refresh-client.c,v 1.37 2020/06/05 07:33:57 nicm Exp $ */ +/* $OpenBSD: cmd-refresh-client.c,v 1.38 2020/06/11 09:55:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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); |