From b0f1a8343552d99c22cdb78927bcc85af50f1e18 Mon Sep 17 00:00:00 2001 From: James Dixon Date: Tue, 10 May 2022 20:53:53 -0400 Subject: [PATCH] change keybinds for selecting panes --- config/tmux/.tmux.conf | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/config/tmux/.tmux.conf b/config/tmux/.tmux.conf index ab53826..450cffb 100644 --- a/config/tmux/.tmux.conf +++ b/config/tmux/.tmux.conf @@ -30,14 +30,11 @@ set -g status-right-length 100 # Key Bindings # #==============# -bind -n M-j select-pane -D -bind -n M-k select-pane -U -bind -n M-h select-pane -L -bind -n M-l select-pane -R -bind -n M-Down select-pane -D -bind -n M-Up select-pane -U -bind -n M-Left select-pane -L -bind -n M-Right select-pane -R +# Select panes +bind C-h select-pane -L +bind C-j select-pane -D +bind C-k select-pane -U +bind C-l select-pane -R # Resize panes - less pain bind-key C-J resize-pane -D 5