Created
April 13, 2020 13:30
-
-
Save yanyuechuixue/dde6953a74c355dc347ff3ef20feaafc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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