From 8ce4cbb15dd7c30c4034a18fa4c24aff3034d52c Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Wed, 15 Aug 2018 14:18:07 +0100 Subject: [PATCH] Restore old next/previous window bindings --- tmux.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tmux.conf b/tmux.conf index 9571ea7..736f18e 100644 --- a/tmux.conf +++ b/tmux.conf @@ -47,6 +47,10 @@ set -ga terminal-overrides 'xterm*:smxx=\E[9m' if -b '[ "`uname`" = "Darwin" ]' \ "set -g default-command 'reattach-to-user-namespace -l $SHELL'" +# Restore old next/previous window bindings +bind C-n next-window +bind C-p previous-window + # Make new splits open in current directory bind "\"" split-window -c "#{pane_current_path}" bind "%" split-window -h -c "#{pane_current_path}"