Skip to content

Instantly share code, notes, and snippets.

@franee
Last active October 19, 2021 10:24
Show Gist options
  • Save franee/498b0856151cba3a2dbd28a0b4de81bf to your computer and use it in GitHub Desktop.
Save franee/498b0856151cba3a2dbd28a0b4de81bf to your computer and use it in GitHub Desktop.
everyday tmux commands
tmux - start tmux session
# window management
C-a c - new window/pane/tab
C-a , - rename window/pane/tab
C-a n - next window/pane/tab
C-a p - previous window/pane/tab
# split pane
C-a % - vertical split
C-a " - horizontal split
C-a space-bar - balance panes
# scroll
C-a [ - scroll back
C-a s - search DOWN within scroll back
C-a r - search UP within scroll back
# session management
C-a d - detach from session
C-a $ - rename session
C-a & - kill pane
tmux ls - list tmux sessions (indexed starting by 0)
tmux attach -t <name or index number> - attach to a running tmux session
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment