From f2c52d37b051a4e6610e4823b6106dee818c9fb8 Mon Sep 17 00:00:00 2001 From: James Dixon Date: Tue, 10 May 2022 21:13:02 -0400 Subject: [PATCH] fix pane keybinds --- config/tmux/.tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/tmux/.tmux.conf b/config/tmux/.tmux.conf index 450cffb..7193744 100644 --- a/config/tmux/.tmux.conf +++ b/config/tmux/.tmux.conf @@ -31,10 +31,10 @@ set -g status-right-length 100 #==============# # 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 +bind-key h select-pane -L +bind-key j select-pane -D +bind-key k select-pane -U +bind-key l select-pane -R # Resize panes - less pain bind-key C-J resize-pane -D 5