tmux notes

In tmux, to perform these commands, you’ll need to prefix ctrl+b followed by:

Panes

% (horizontal split)
" (vertical split)
z (toggle zooming of current pane)

Resize Panes

:resize-pane -D (Resizes the current pane down)
:resize-pane -U (Resizes the current pane upward)
:resize-pane -L (Resizes the current pane left)
:resize-pane -R (Resizes the current pane right)
:resize-pane -D 10 (Resizes the current pane down by 10 cells)
:resize-pane -U 10 (Resizes the current pane upward by 10 cells)
:resize-pane -L 10 (Resizes the current pane left by 10 cells)
:resize-pane -R 10 (Resizes the current pane right by 10 cells)

Windows

& (kill window - doesn't save session)

Changelog

02-16-2017
Added in zooming of current pane.
07-15-2016
Initial setup of tmux notes. Added Panes and Windows sections.