Cheat Sheet
Tmux tips and tricks.
Install
Sessions
Create new
Use existing session
Or you can list all sessions:
And attache to an existing one:
Delete/Kill session
Kill all sessions
Kill specific session
Kill other sessions
If you are inside a tmux session you would like to keep and kill all others, run:
Windows and Panes
Ctrl+b
c
Create a new window (with shell)Ctrl+b
w
Choose window from a listCtrl+b
0
Switch to window 0 (by number )Ctrl+b
,
Rename the current windowCtrl+b
%
Split current pane vertically into two panesCtrl+b
"
Split current pane horizontally into two panesCtrl+b
o
Go to the next paneCtrl+b
;
Toggle between the current and previous paneCtrl+b
x
Close the current paneEnable
synchronize-panes
:ctrl+b
thenshift :
. Then typeset synchronize-panes on
at the prompt. To disable synchronization:set synchronize-panes off
.Ctrl+b
[
To enable copy mode. Use arrows to scroll.Ctrl+b
Alt + 1
All panels on vertical with same width.Or run
Ctrl+b
Shift + :
select-layout even-vertical
Ctrl+b
Alt + 2
All panels on horizontal with same height.Or run
Ctrl+b
Shift + :
select-layout even-horizontal
Last updated