tmux
为什么使用 tmux
tmux 是一个 terminal multiplexer(终端复用器),可以启动一系列的终端会话。方便使用。
tmux 同时解绑了会话和终端窗口的概念。关闭终端窗口,会话并不会终止,而是在运行。
因为在 shell 中编写文件的时候,需要开多个终端,还要用鼠标切屏有点麻烦。
安装 : sudo apt-get install tmux
tmux 的使用
session
1 | # 启动命名 tmux |
pane
划分窗格
1 | # 划分上下两个窗格 |
移动光标
1 | $ tmux select-pane -UDLR |
快捷键
ctrl+b %:划分左右窗格
ctrl+b “:划分上下窗格
ctrl+b !: 将 pane 拆分成一个 window
ctrl+b z: 将 pane 全屏显示
ctrl+b 方向键:移动光标
ctrl+b x: 关闭窗格
window
- ctrl+b c:create
- ctrl+b ,: rename
- ctrl+b w: select
oh-my-tmux
使用 tmux 当然要美化一下捏,zsh 中的 tmux plugin 也挺好用的捏
1 | $ cd |
问题:色彩显示不完全
需要在 .tmux.conf
中配置一下 color
1 | if-shell '[ $(uname -s) = Linux ]' \ |
- Post title:tmux
- Post author:auggie
- Create time:2022-04-30 22:09:08
- Post link:https://ruanjiancheng.github.io/2022/04/30/tmux/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.