Reference

Cheat Sheet

The commands you keep forgetting, with a one-line description and a real example you can copy - 384 across 26 tools. Pick a tool in the sidebar, or search across all of them.

tmux

Keep terminal sessions alive and split your screen. The prefix key is Ctrl-b by default.
CommandWhat it doesExample
tmuxStart a new session.tmux
tmux new -sStart a named session.tmux new -s work
tmux lsList running sessions.tmux ls
tmux attachReattach to a session.tmux attach -t work
Ctrl-b dDetach, leaving everything running.Ctrl-b d
Ctrl-b cCreate a new window.Ctrl-b c
Ctrl-b n / pNext / previous window.Ctrl-b n
Ctrl-b %Split the current pane vertically.Ctrl-b %
Ctrl-b "Split the current pane horizontally.Ctrl-b "
Ctrl-b arrowMove between panes.Ctrl-b right
Ctrl-b xClose the current pane.Ctrl-b x
Ctrl-b ,Rename the current window.Ctrl-b ,
Ctrl-b [Enter scroll / copy mode (q to exit).Ctrl-b [
tmux kill-sessionKill a session by name.tmux kill-session -t work