Last active
October 19, 2021 10:24
-
-
Save franee/498b0856151cba3a2dbd28a0b4de81bf to your computer and use it in GitHub Desktop.
everyday tmux commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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