From 4587413028b4140e4417f93f4fa83e14ddbf1d7b Mon Sep 17 00:00:00 2001 From: Gregory Pakosz Date: Sun, 18 Oct 2015 11:57:17 +0200 Subject: [PATCH] unbind n and p By default n and p are bound to next/previous-window. However, this configuration is Vim centric and window navigation is achieved with C-h and C-l. While n is currently left unused, p is bound to paste-buffer. --- .tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 34263d4..60ab41c 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -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