Inserting panes at the bottom

2014-03-16 Thread Michael Schuerig
I'm trying to use (abuse?) tmux for displaying the progress of several jobs running in parallel. For that, I'd like to insert new panes at the bottom, thereby moving other panes up. Panes should keep a fixed height and when one pane is closed, those on top of it should move down. What I've com

Re: Inserting panes at the bottom

2014-03-16 Thread Nicholas Marriott
Try: tmux selectp -t:.0\; selectp -t:.-1\; splitw 'top'\; selectl even-vertical But it'll only work until the bottom pane gets too small to split. On Sun, Mar 16, 2014 at 10:50:19AM +0100, Michael Schuerig wrote: > > I'm trying to use (abuse?) tmux for displaying the progress of several > jo