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"