From a994d98f0bb3be31b192e1e8ef764fbab2f93504 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sun, 15 Feb 2015 19:23:42 +0000 Subject: [PATCH] tmux.conf: Change panes using C-[hjkl] Resizing is now M-[hjkl]. --- tmux.conf | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tmux.conf b/tmux.conf index b9afe4a..910670f 100644 --- a/tmux.conf +++ b/tmux.conf @@ -7,8 +7,12 @@ set -w -g window-status-current-fg colour39 set -w -g window-status-current-bg colour236 set -w -g window-status-bell-fg colour233 set -w -g window-status-bell-bg colour124 -bind -r C-h resize-pane -L -bind -r C-j resize-pane -D -bind -r C-k resize-pane -U -bind -r C-l resize-pane -R +bind -r C-h select-pane -L +bind -r C-j select-pane -D +bind -r C-k select-pane -U +bind -r C-l select-pane -R +bind -r M-h resize-pane -L +bind -r M-j resize-pane -D +bind -r M-k resize-pane -U +bind -r M-l resize-pane -R set -ag terminal-overrides ",*:XT@"