In Vim mit
C-W =
Die Fenster werden automatisch auf die gleiche Höhe angepasst.
In tmux mit
:resize-pane -U 10
Ich kann die Höhe des TMUX-Fensters in 10 erhöhen.
Wie kann ich die Fenster automatisch auf dieselbe Höhe skalieren?
Ich schlage vor, die Größe mehrerer Fenster mit einer der fünf tmux-Voreinstellungen zu ändern:
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
bezeichnet den Metaschlüssel, an den normalerweise gebunden wird ALT.
Auf Macs lautet der Metaschlüssel normalerweise Escwie im Kommentar unten erwähnt .
Weitere Informationen finden Sie in der tmux-Manpage.
PREFIX Space
ist die Abkürzung für: next-layoutquelle