mirror of
1
0
Fork 0

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:
Gregory Pakosz 2015-10-18 11:57:17 +02:00
parent 3e516380a1
commit 4587413028
1 changed files with 2 additions and 0 deletions

View File

@ -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