diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-24 09:57:59 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-24 09:57:59 +0000 |
commit | c71844de631186f3df7ff5a6e3aab613da1e4853 (patch) | |
tree | 11225419cb1fd07855bcf628df487a25248103fc /cmd-join-pane.c | |
parent | a05b8c41437409f83cb1df2adc0998791d7a2038 (diff) | |
download | rtmux-c71844de631186f3df7ff5a6e3aab613da1e4853.tar.gz rtmux-c71844de631186f3df7ff5a6e3aab613da1e4853.tar.bz2 rtmux-c71844de631186f3df7ff5a6e3aab613da1e4853.zip |
Add resize-pane -Z to temporary zoom the active pane to occupy the full
window or unzoom (restored to the normal layout) if it already zoomed,
bound to C-b z by default. The pane is unzoomed on pretty much any
excuse whatsoever.
We considered making this a new layout but the requirements are quite
different from layouts so decided it is better as a special case. Each
current layout cell is saved, a temporary one-cell layout generated and
all except the active pane set to NULL.
Prompted by suggestions and scripts from several. Thanks to Aaron Jensen
and Thiago Padilha for testing an earlier version.
Diffstat (limited to 'cmd-join-pane.c')
-rw-r--r-- | cmd-join-pane.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd-join-pane.c b/cmd-join-pane.c index 2e7a59cd..cf17e7d9 100644 --- a/cmd-join-pane.c +++ b/cmd-join-pane.c @@ -92,11 +92,13 @@ join_pane(struct cmd *self, struct cmd_q *cmdq, int not_same_window) return (CMD_RETURN_ERROR); dst_w = dst_wl->window; dst_idx = dst_wl->idx; + server_unzoom_window(dst_w); src_wl = cmd_find_pane(cmdq, args_get(args, 's'), NULL, &src_wp); if (src_wl == NULL) return (CMD_RETURN_ERROR); src_w = src_wl->window; + server_unzoom_window(src_w); if (not_same_window && src_w == dst_w) { cmdq_error(cmdq, "can't join a pane to its own window"); |