summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2015-01-06 19:13:41 +0100
committerVictor Toso <victortoso@redhat.com>2015-01-06 19:13:41 +0100
commit902cd2bfc3a50cbffd295406f18205841cb90442 (patch)
tree1df5aa6079d5cc339f6b76135b19129998be3cf2
parent341b07581aaf7a089f7f813e5fa6db4f7a261167 (diff)
tmux: bind alt+shit+arrow_keys to resize panes
-rw-r--r--tmux.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf
index 9ed5378..6c0f36a 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -37,3 +37,8 @@ bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
+
+bind-key -n M-S-Up resize-pane -U 2
+bind-key -n M-S-Down resize-pane -D 2
+bind-key -n M-S-Right resize-pane -R 2
+bind-key -n M-S-Left resize-pane -L 2