Terminal Multiplexer

From 6bit.ch wiki
Revision as of 11:48, 28 November 2022 by Xbl (talk | contribs) (→‎navigating)
Jump to navigation Jump to search

tmux

navigating

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
Ctr-b pgup/pgdown scroll up/down (window)
Ctr-b [ + arrow keys scroll up/down (line)

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