SESSION
- new
$ tmux new -s <session-name>
- detach
$ tmux detach
or
Ctrl+b d:分离当前会话
- attach
$ tmux attach -t <session-name>
- switch
$ tmux switch -t <session-name>
- kill
$ tmux kill-session -t <session-name>
WINDOW
Ctrl+b w:从列表中选择窗口
- new
$ tmux new-window -n <window-name>
- select
$ tmux select-window -t <window-name>
PANE in WINDOW
- split
# 划分上下两个窗格 $ tmux split-window
# 划分左右两个窗格 $ tmux split-window -h
- select
# 光标切换到上方窗格 $ tmux select-pane -U
# 光标切换到左边窗格 $ tmux select-pane -L
- mgmt
Ctrl+b %:划分左右两个窗格。
Ctrl+b ":划分上下两个窗格。
Ctrl+b <arrow key>:光标切换到其他窗格。
Ctrl+b ;:光标切换到上一个窗格。
Ctrl+b o:光标切换到下一个窗格。
Ctrl+b {:当前窗格与上一个窗格交换位置。
Ctrl+b }:当前窗格与下一个窗格交换位置。
Ctrl+b x:关闭当前窗格。
Ctrl+b z:当前窗格全屏显示,再使用一次会变回原来大小。
Ctrl+b Ctrl+<arrow key>:按箭头方向调整窗格大小。
Ctrl+b q:显示窗格编号。