From 12a6be72380282ba161f47924b08a6f727483f0b Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Thu, 17 Jun 2021 12:35:58 -0400 Subject: [PATCH] FIX keybinding overlap in tmux --- dot_config/tmux/tmux.conf.tmpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dot_config/tmux/tmux.conf.tmpl b/dot_config/tmux/tmux.conf.tmpl index cf6de3a..19f7f6e 100644 --- a/dot_config/tmux/tmux.conf.tmpl +++ b/dot_config/tmux/tmux.conf.tmpl @@ -26,10 +26,10 @@ bind - split-window -v bind | split-window -h # window navigation -bind -n C-] next-window -bind -n C-[ previous-window -bind -n M-] swap-window -t +1 \; next-window -bind -n M-[ swap-window -t -1 \; previous-window +bind -n M-Tab next-window +bind -n M-BTab previous-window +bind -n C-M-Tab swap-window -t +1 \; next-window +bind -n C-M-BTab swap-window -t -1 \; previous-window bind -n M-| choose-window "join-pane -h -t '%%'" bind -n M-- choose-window "join-pane -v -t '%%'"