From ffb1c54769fc78643328ff0ebdc266a99537d3fa Mon Sep 17 00:00:00 2001 From: Gregory Pakosz Date: Tue, 21 Aug 2018 22:46:02 +0200 Subject: [PATCH] Revert "do not use repeatable bindings for pane and windows navigation. Fixes #166" This reverts commit 7ebc59956a8d550bf06085b7d273221958c4a097. --- .tmux.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 348c246..b650e6f 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -67,10 +67,10 @@ bind - split-window -v bind _ split-window -h # pane navigation -bind h select-pane -L # move left -bind j select-pane -D # move down -bind k select-pane -U # move up -bind l select-pane -R # move right +bind -r h select-pane -L # move left +bind -r j select-pane -D # move down +bind -r k select-pane -U # move up +bind -r l select-pane -R # move right bind > swap-pane -D # swap current pane with the next one bind < swap-pane -U # swap current pane with the previous one @@ -86,8 +86,8 @@ bind -r L resize-pane -R 2 # window navigation unbind n unbind p -bind C-h previous-window # select previous window -bind C-l next-window # select next window +bind -r C-h previous-window # select previous window +bind -r C-l next-window # select next window bind Tab last-window # move to last active window # toggle mouse