From e0fdd45e6ccead572dffbb590a81601e71cea6af Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Mon, 27 Jun 2022 02:32:41 +0200 Subject: [PATCH] tmux: Add binding to synchronize panes Synchronize the panes in the current window with `S`. --- .config/tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 44a9cd5..1ec4deb 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -93,6 +93,9 @@ bind -n M-S-Up resizep -D bind -n M-S-Down resizep -U bind -n M-S-Right resizep -R +# Synchronize the panes in the current window with `S` +bind S set -w synchronize-panes + # Change installation location of plugins setenv -g TMUX_PLUGIN_MANAGER_PATH "$XDG_CONFIG_HOME/tmux/plugins/"