tmux.conf: Fix merge pane binding

This commit is contained in:
Sanchayan Maity 2019-12-12 14:58:39 +05:30 committed by Sanchayan Maity
parent 05caf3adf5
commit 2d69cfa383
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ bind L resize-pane -R 10
# Move windows back/forward
bind -n S-left swap-window -t -1
bind -n S-right swap-window -t +1
bind -n m command-prompt -p "Merge pane to:" "join-pane -t '%%'"
bind -n M command-prompt -p "Merge pane from:" "join-pane -s '%%'"
bind m command-prompt -p "Merge pane to:" "join-pane -t '%%'"
bind M command-prompt -p "Merge pane from:" "join-pane -s '%%'"
bind e setw synchronize-panes on \; display "Synchronize panes ON (E: off)"
bind E setw synchronize-panes off \; display "Synchronize panes OFF (e: on)"