Como redimensionar automaticamente os painéis no tmux?

40

No Vim, com

 C-W =

as janelas são redimensionadas automaticamente para a mesma altura.

No tmux, com

 :resize-pane -U 10

Eu posso aumentar a altura do painel tmux em 10.

Como posso redimensionar automaticamente os painéis para a mesma altura?

    
por juanpablo 02.08.2012 / 16:41

2 respostas

60

Sugiro redimensionar vários painéis com uma das cinco predefinições tmux:

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 denota a meta-chave, geralmente ligada a ALT .

Em Macs, a meta-chave é geralmente Esc , como mencionado no comentário abaixo .

Veja a manpage do tmux para mais informações.

    
por 02.08.2012 / 17:38
33

PREFIX Space é o atalho para: next-layout

    
por 21.08.2012 / 18:16

Tags