Updating config for compatibility with tmux 2.4

This commit is contained in:
David Thurstenson 2017-04-27 08:44:53 -05:00
parent 618176d234
commit e25c161ade
1 changed files with 5 additions and 5 deletions

View File

@ -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"