#cheatsheet List cheatsheet `ctrl+b - ?` ## Keybindings Cycle through sessions `<C-b>(` and `<C-b>)` Show all sessions `<prefix>-w` Detach session `<prefix>-d` Create windows `<prefix>-c` Next window `<prefix>-n` Prev window `<prefix>-p` Create new session with name `tmux new-session -d -s "name"` Create new window with name `tmux new-window -n "name"` ## Config Remap default prefix to `<C-a>` ``` unbind C-b set-option -g prefix C-a bind-key C-a send-prefix ``` Remapped UHK for easy prefix: `MOD-A = <C-a>`