From 9faaa4846457f04b58108964ad0154c3d68d67d1 Mon Sep 17 00:00:00 2001 From: Dale Shrauger Date: Tue, 23 Oct 2018 16:17:27 -0500 Subject: [PATCH] Add Control Shift arrow to swap windows left/right --- .tmux.conf.local | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.tmux.conf.local b/.tmux.conf.local index 0b001ba..bb12b9b 100644 --- a/.tmux.conf.local +++ b/.tmux.conf.local @@ -17,6 +17,10 @@ bind -n S-Left previous-window bind -n S-Right next-window +# Control Shift arrow to swap windows +bind-key -n C-S-Left swap-window -t -1 +bind-key -n C-S-Right swap-window -t +1 + # Use Alt-vim keys without prefix key to switch panes bind -n M-h select-pane -L bind -n M-j select-pane -D