'tmux synchronize some but not all panes
In tmux I have a 3 columns and 2 rows layout, the top row is ssh connection to all my server and the bottom is all the same servers running top.
I am trying to sync the top row so if I enter a command all three panes copy the same command, I tried synchronize-panes but as the man pages says it will run the commands through all the panes which then plays havoc with my all my 'top' on the botton row.
is there anyway to sync a set of panes?
Solution 1:[1]
You can disable input on panes with select-pane -d. To enable it again, do select-pane -e
I have a shortcut for this in my prefix:
bind -T marcos d select-pane -d
bind -T marcos e select-pane -e
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Marcos Oliveira |
