From 6026d3b1bd1535654f034a9ac29536440f90f288 Mon Sep 17 00:00:00 2001 From: cheetah Date: Fri, 3 Aug 2012 10:09:02 +0600 Subject: [PATCH] tmux fast pane resizing hotkeys. --- home/.tmux.conf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home/.tmux.conf b/home/.tmux.conf index 4ea2e3c..3967dc5 100644 --- a/home/.tmux.conf +++ b/home/.tmux.conf @@ -74,4 +74,10 @@ set-window-option -g automatic-rename set -g mode-mouse off # color -set -g default-terminal "screen-256color" \ No newline at end of file +set -g default-terminal "screen-256color" + +# Pane resizing +bind-key J resize-pane -D 10 +bind-key K resize-pane -U 10 +bind-key H resize-pane -L 10 +bind-key L resize-pane -R 10 \ No newline at end of file