tmux 使用与配置
tmux 是一个优秀的终端复用软件, 它能通过一个终端登录远程主机并运行后,在其中可以开启多个控制台的终端复用软件。
本文在操作环境是在mac上
安装
1 | brew install tmux |
安装插件管理器
1 | git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm |
然后在 ~/.tmux.conf 文件底部加上
1 | # List of plugins |
如果你已经打开tmux, 需要在重新加载一下配置文件
1 | tmux source ~/.tmux.conf |
插件管理器的常用命令
1
2
3prefix shift-i # install
prefix shift-u # update
prefix alt-u # uninstall plugins not on the plugin list安装 tmux-resurrect 插件
1
2
3
4
5
6
7
8vim ~/.tmux.conf
# List of plugins
...
set -g @plugin 'tmux-plugins/tmux-resurrect'
...
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'保存后在执行
prefix shift-i
安装, 在tmux 出现 Done, press ESCAPE to continue. 则代表安装成功
配置 tmux-resurrect
1 | ... |
这样,只要定期 prefix Ctrl-s 就会保存键入的命令历史、Tmux 的面板布局还有 Vim 的状态了。
还原只要 prefix Ctrl-r 即可
- 安装 tmux-continuum 插件
1 | vim ~/.tmux.conf |
配置 tmux-continuum
1 | # 时间间隔单位分钟, 默认时间为 15 分钟,如果需要可以用以下方式改为 60 分钟,如果想改停止自动保存 则设置为 0 就可以 |
session 常用操作
创建一个新的session
1
tmux new -s <session name>
进入一个已存在的session
1
tmux a -t <session name>
重命名会话名称
1
tmux rename-session -t targetname newname
pane 和 window 常用操作
以下命令都需要按一下 tmux 默认设置的prefix 键
<C-b>
- pane 操作
命令 | 描述 |
---|---|
" |
水平分割窗口 |
% |
垂直分割窗口 |
o |
跳到下一个分隔窗口 |
% |
确认后退出窗口 |
- window 操作
命令 | 描述 |
---|---|
c |
创建一个新的window |
n |
下一个窗口 |
p |
上一个窗口 |
配置
tmux 配置文件是在用户目录下
~/.tmux.conf
1 | vim ~/.tmux.conf |