Tmux - synchronize the input of all panes within a window
So, you've got a tmux window with 10 panes, and you want to clear the panes, switch to a different directory, stop multiple process, and so on. There is a simple way to do it:
Prefix
+ :set synchronize-panes on
Just in case: the default prefix
is CTRL
+ b
.
The input of all panes within a window will be synchronized until you turn it off again:
Prefix
+ :set synchronize-panes off
Create keybinding
If you need this function often, you could create a simple keybind for it. For examples, if you want to add it to Prefix
+ e
, add this to your config file:
bind e set-window-option synchronize-panes
Load this config with Prefix
+ :source-file ~/.tmux.conf
(or wherever your config file is located) and you can turn pane synchronization on and off with Prefix
+ e
.
E-Mail hello @itta vern. com
Twitter ITTavernCom
Lemmy infosec.pub/c/ittavern
More reading:
- 16.06.2023 Create tmux layouts using bash scripts
- 03.12.2022 Tmux - reload .tmux.conf configuration file
- 21.11.2022 Getting started with tmux
- 04.08.2023 Getting started with Fail2Ban on Linux
- 23.07.2023 Getting started with netcat on Linux with examples
- 06.07.2023 URL explained - The Fundamentals
- 22.06.2023 Troubleshooting: Asking The Right Questions
- 16.06.2023 Create tmux layouts using bash scripts