使用
shell
# 启动
tmux
# 启动并设置 session 名称
tmux new -s {session-name}
# attach
tmux a # or at, or attach
# attach by session name
tmux a -t {session-name}
# 列出 session
tmux ls
# 清理 session
tmux kill-session -t {session-name}
# tmux 内
# 重命名 session
C-B $
# 重命名 window
C-B ,
# 关闭 window
C-B &
快捷键
shell
# active command mode
ctrl + b
Pane
shell
" splite vertical
% splite horizon
q show pane numbers
o change focued pane
z set current pane fullscreen
! 转换 pane 为 window
ctrl+o swap panes
[space] 切换布局
x close panel (or exit)
arrow change panel
Session
shell
$ rename session
s list session
d detach (keep session alive)
Window
shell
c create
& close
n next
p previous
w list windows
f find windows
, name windows
拷贝模式
shell
# active command mode
ctrl + b
# command
[ 开启拷贝模式, 可以滚动屏幕
q 退出拷贝模式
[Esc] 退出拷贝模式
调整大小
shell
# 1. 启用 command mode
ctrl + b
# 2. 调整大小
{滚轮} 调整上下分屏 Pane 的大小
TPM(Tmux Plugin Manager)
安装。
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
编辑 ~/.tmux.conf
,添加如下内容。
shell
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
概念
三要素 Session、Window、Pane。prefix key,默认 ctrl + B。