tmux cheatsheet

My personal tmux cheat sheet

Create a new session:

tmux new -s myname

Attach:

tmux a

Attach to a specific named session:

tmux a -t myname

List of sessions:

tmux ls

Tmux uses ctrl + b prefix modifier. After that you can use options like:

d detach sessions
c create window
w list windows
n next window
p previous window
f find window
, name window
& kill window

Scrolling:

  • ctrl + b -> page up/down
  • ctrl + b -> fn + arrow up/down

Leave a Reply

Your email address will not be published. Required fields are marked *