From 9aa217c293e457a31d8a5bcc5821df6e964da4b6 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 26 Apr 2016 14:41:18 +0200 Subject: [PATCH] Quicker resizing of panes, through easier shortkeys --- .tmux.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index f130afb..70fcafd 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -20,6 +20,12 @@ bind-key K resize-pane -U bind-key H resize-pane -L bind-key L resize-pane -R +# Pane resize in the four directions using ctrl+shift+arrow-key +bind-key -n C-S-Up resize-pane -U 15 +bind-key -n C-S-Down resize-pane -D 15 +bind-key -n C-S-Left resize-pane -L 25 +bind-key -n C-S-Right resize-pane -R 25 + # Use vi keybindings for tmux commandline input. # Note that to get command mode you need to hit ESC twice... set -g status-keys vi