From 3594ac51816c4bd78b12bd2986b000381ba48794 Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Thu, 28 Dec 2017 12:55:23 -0500 Subject: [PATCH] Use consistent syntax for tmux mappings `bind` is effectively an alias for `bind-key`: See https://superuser.com/questions/581939/on-tmux-what-is-the-difference-between-bind-and-bind-key --- tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tmux.conf b/tmux.conf index 9f72b76..2bd7c18 100644 --- a/tmux.conf +++ b/tmux.conf @@ -3,10 +3,10 @@ set -g default-terminal 'screen-256color' # act like vim setw -g mode-keys vi -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R +bind-key h select-pane -L +bind-key j select-pane -D +bind-key k select-pane -U +bind-key l select-pane -R bind-key -r C-h select-window -t :- bind-key -r C-l select-window -t :+