fix(tmux): fix swap pane mappings

This commit is contained in:
thek4n 2024-05-19 14:54:31 +03:00
parent ad425f8229
commit 2378ecee87

View File

@ -90,8 +90,8 @@ bind -n C-M-k resize-pane -U
# Swappings panes
bind -n M-L swap-pane -t '{left-of}'
bind -n M-H swap-pane -t '{right-of}'
bind -n M-L swap-pane -t '{right-of}'
bind -n M-H swap-pane -t '{left-of}'
bind -n M-J swap-pane -t '{down-of}'
bind -n M-K swap-pane -t '{up-of}'