Table of common tmux shortcuts and commands:
| Action | Shortcut/Command |
|---|---|
| Start a new session | tmux or tmux new -s session_name |
| Detach from session | Ctrl-b, then d |
| List sessions | tmux ls |
| Attach to a session | tmux attach -t session_name |
| Kill a session | tmux kill-session -t session_name |
| Split window horizontally | Ctrl-b, then % |