CVSROOT: /cvs Module name: src Changes by: n...@cvs.openbsd.org 2013/03/24 03:58:00
Modified files: usr.bin/tmux : cmd-break-pane.c cmd-join-pane.c cmd-kill-pane.c cmd-resize-pane.c cmd-respawn-window.c cmd-select-layout.c cmd-select-pane.c cmd-split-window.c cmd-swap-pane.c input-keys.c key-bindings.c layout.c resize.c server-client.c server-fn.c tmux.1 tmux.h window.c Log message: 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.