do not use repeatable bindings for pane and windows navigation. Fixes #166
This commit is contained in:
parent
ac61dd04e0
commit
7ebc59956a
1 changed files with 6 additions and 6 deletions
12
.tmux.conf
12
.tmux.conf
|
@ -68,10 +68,10 @@ bind - split-window -v
|
||||||
bind _ split-window -h
|
bind _ split-window -h
|
||||||
|
|
||||||
# pane navigation
|
# pane navigation
|
||||||
bind -r h select-pane -L # move left
|
bind h select-pane -L # move left
|
||||||
bind -r j select-pane -D # move down
|
bind j select-pane -D # move down
|
||||||
bind -r k select-pane -U # move up
|
bind k select-pane -U # move up
|
||||||
bind -r l select-pane -R # move right
|
bind l select-pane -R # move right
|
||||||
bind > swap-pane -D # swap current pane with the next one
|
bind > swap-pane -D # swap current pane with the next one
|
||||||
bind < swap-pane -U # swap current pane with the previous one
|
bind < swap-pane -U # swap current pane with the previous one
|
||||||
|
|
||||||
|
@ -87,8 +87,8 @@ bind -r L resize-pane -R 2
|
||||||
# window navigation
|
# window navigation
|
||||||
unbind n
|
unbind n
|
||||||
unbind p
|
unbind p
|
||||||
bind -r C-h previous-window # select previous window
|
bind C-h previous-window # select previous window
|
||||||
bind -r C-l next-window # select next window
|
bind C-l next-window # select next window
|
||||||
bind Tab last-window # move to last active window
|
bind Tab last-window # move to last active window
|
||||||
|
|
||||||
# toggle mouse
|
# toggle mouse
|
||||||
|
|
Loading…
Reference in a new issue