unbind <prefix> n and <prefix> p
By default <prefix> n and <prefix> p are bound to next/previous-window. However, this configuration is Vim centric and window navigation is achieved with <prefix> C-h and <prefix> C-l. While <prefix> n is currently left unused, <prefix> p is bound to paste-buffer.
This commit is contained in:
parent
3e516380a1
commit
4587413028
1 changed files with 2 additions and 0 deletions
|
@ -87,6 +87,8 @@ bind -r K resize-pane -U 2
|
|||
bind -r L resize-pane -R 2
|
||||
|
||||
# window navigation
|
||||
unbind n
|
||||
unbind p
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue