How to auto resize panes in tmux

tmux

In Vim, with

 C-W =

the windows are auto resized to the same height.

In tmux, with

 :resize-pane -U 10

I can increment the height of tmux pane in 10.

How I can auto resize the panes to the same height?

Best Answer

I suggest resizing multiple panes with one of the five tmux presets:

C-b M-1             # vertical split, all panes same width
C-b M-2             # horizontal split, all panes same height
C-b M-3             # horizontal split, main pane on top,
                      other panes on bottom, vertically split, all same width
C-b M-4             # vertical split, main pane left,
                      other panes right, horizontally split, all same height
C-b M-5             # tile, new panes on bottom, same height before same width

M denotes the meta key, usually bound to ALT.

On Macs the meta key is usually Esc, as mentioned in the comment below.

See the tmux manpage for more information.

Related Question