From e25c161adef9bcd37c7f2f6dc448468cf34fd735 Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Thu, 27 Apr 2017 08:44:53 -0500 Subject: [PATCH] Updating config for compatibility with tmux 2.4 --- .tmux.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 96d808b..221a868 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -92,10 +92,10 @@ bind -n M-j select-pane -D set -sg escape-time 0 # Various copy mode tweaks -bind-key -t vi-copy Home start-of-line -bind-key -t vi-copy End end-of-line +bind-key -T copy-mode-vi Home start-of-line +bind-key -T copy-mode-vi End end-of-line # Sync copy mode and PRIMARY selection -bind-key -t vi-copy MouseDragEnd1Pane copy-pipe "xsel -i -p -b" -bind-key -t vi-copy Enter copy-pipe "xsel -i -p -b" -bind-key -t vi-copy y copy-pipe "xsel -i -p -b" +bind-key -T copy-mode-vi MouseDragEnd1Pane copy-pipe "xsel -i -p -b" +bind-key -T copy-mode-vi Enter copy-pipe "xsel -i -p -b" +bind-key -T copy-mode-vi y copy-pipe "xsel -i -p -b"