From fdb58f9708c431f4291b31ee3e74593b9c9c9039 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 4 Sep 2012 14:55:05 +0300 Subject: [PATCH] tmux: Explicitly set vi bindings The default is emacs, unless EDITOR contains "vi", but there's no harm in setting this explicitly. --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index fdb8bd9..9a7e45b 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -76,6 +76,9 @@ bind '"' choose-window # use Escape for entering copy mode, like screen bind Escape copy-mode +# use vi-style key bindings +set-option -g mode-keys vi + # Rather than constraining window size to the maximum size of any client # connected to the *session*, constrain window size to the maximum size # of any client connected to *that window*. Much more reasonable.