
| Activity | Command |
| Start a session | tmux |
| Start a named session | tmux new -s your_session_name |
| Session: Typical template: Toggle tmux command | CTRL-b **** |
| Session: Detach the current session | CTRL-b d |
| List Sessions | tmux attach-session -t <name/number> e.g. tmux attach-session -t 0 |
| Panes: Session: Create new Window | CTRL-b c |
| Panes: Select Window from List | CTRL-b w |
| Panes: Split current pane horizontally | CTRL-b % |
| Panes: Split current pane vertically | CTRL-b “ |
| Panes: Goto next page (tab to next) | CTRL-b o |
| Panes: Close current pane | CTRL-b x |
