Terminal Multiplexer
Revision as of 15:05, 14 October 2022 by Xbl (talk | contribs) (Created page with "= tmux = == navigating == <code>Ctr-b leftarrow</code> move active window horizontally</br> <code>Ctr-b rightarrow</code> move active window horizontally</br> <code>Ctr-b uparrow</code> move active window vertically</br> <code>Ctr-b downarrow</code> move active window vertically</br> == listing, creating, renaming, killing == <code>tmux ls</code> list sessions</br> <code>tmux kill -t sessionname</code> kill tmux session with name $sessionname</br> <code>tmux new -s ses...")
tmux
Ctr-b leftarrow move active window horizontally
Ctr-b rightarrow move active window horizontally
Ctr-b uparrow move active window vertically
Ctr-b downarrow move active window vertically
listing, creating, renaming, killing
tmux ls list sessions
tmux kill -t sessionname kill tmux session with name $sessionname
tmux new -s sessionname create tmux session with name $sessionname
tmux rename -t sessionname newname rename $sessionname to $newname
tmux attach -t sessionname attach to $sessionname
Ctr-b d detach from session
spawning
Ctr-b % spawn terminal horizontally
Ctr-b " spawn terminal vertically