From 5094f094bc09bc0add959a19bebb53db5466cfd7 Mon Sep 17 00:00:00 2001 From: David Runge Date: Fri, 3 Apr 2015 23:47:52 +0200 Subject: .tmux.conf: Fixing resize support. Clarifying comment. --- .tmux.conf | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to '.tmux.conf') diff --git a/.tmux.conf b/.tmux.conf index 4a87909..a5872c3 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -16,12 +16,11 @@ bind l select-pane -R bind-key v split-window -h bind-key s split-window -# Pane resize in all four directions using vi bindings. -# Can use these raw but I map them to shift-ctrl- in iTerm. -bind-key J resize-pane -D -bind-key K resize-pane -U -bind-key H resize-pane -L -bind-key L resize-pane -R +# Pane resize in all four directions using HJKL +bind-key -r H resize-pane -L +bind-key -r J resize-pane -D +bind-key -r K resize-pane -U +bind-key -r L resize-pane -R # Fix ctrl + L/R bind-key -n C-Right send-keys w bind-key -n C-Left send-keys b -- cgit v1.2.3-54-g00ecf