DevBlog/posts/cheatsheet-tmux.md
2025-01-09 15:14:49 +01:00

847 B

title layout categories tags is_draft
Tmux Cheat Sheet default.liquid
Cheat Sheet
cheat sheet
tmux
true

Commands

$ tmux new
$ tmux new -s session_name

$ tmux attach # Default session
$ tmux attach -t session_name

$ tmux switch -t session_name

$ tmux ls     # List sessions

$ tmux detach

Panes

C-b %       # vert
C-b "       # horiz
C-b hkjl    # navigation
C-b HJKL    # resize
C-b o       # next window
C-b q       # show pane numbers
C-b x       # close pane

C-b { or }  # move windows around

Windows

C-b c       # New window
C-b 1       # Go to window 1
C-b n       # Go to next window
C-b p       # Go to previous window
C-b w       # List all window

References