Skip to content

Instantly share code, notes, and snippets.

@yanyuechuixue
Created April 13, 2020 13:30
Show Gist options
  • Save yanyuechuixue/dde6953a74c355dc347ff3ef20feaafc to your computer and use it in GitHub Desktop.
Save yanyuechuixue/dde6953a74c355dc347ff3ef20feaafc to your computer and use it in GitHub Desktop.
### tmux 分栏
```bash
# 纵向分栏
Ctrl + b -> %
# 横向分栏
Ctrl + b -> "
# 切换
Ctrl + o
```
### tmux批量操作:
```
ctrl+b 以后输入
:set synchronize-panes
```
现在你输入的命令会同时显示在8个窗口中, 如需关闭:
```
:set synchronize-panes off
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment