Revert "do not use repeatable bindings for pane and windows navigation. Fixes #166"
This reverts commit 7ebc59956a
.
This commit is contained in:
parent
b3a9f75ea6
commit
ffb1c54769
1 changed files with 6 additions and 6 deletions
12
.tmux.conf
12
.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
|
||||
|
|
Loading…
Reference in a new issue