[tmux] fix copy-mode binding
Accidentally removed the line that binds v to enter copy-mode
This commit is contained in:
parent
d8a9f2cdb3
commit
db9c11c5f0
1 changed files with 5 additions and 4 deletions
|
@ -30,10 +30,11 @@ set -g status-keys vi
|
|||
setw -g mode-keys vi
|
||||
|
||||
# Copy mode and paste
|
||||
bind-key -t vi-copy 'v' begin-selection
|
||||
bind-key -t vi-copy 'y' copy-selection
|
||||
bind-key -t vi-copy 'y' copy-pipe "xclip -selection c > /dev/null"
|
||||
bind-key 'p' run "xclip -o -sel clip | tmux load-buffer - ; tmux paste-buffer"
|
||||
bind v copy-mode
|
||||
bind-key -t vi-copy v begin-selection
|
||||
bind-key -t vi-copy y copy-selection
|
||||
bind-key -t vi-copy y copy-pipe "xclip -selection c > /dev/null"
|
||||
bind-key p run "xclip -o -sel clip | tmux load-buffer - ; tmux paste-buffer"
|
||||
|
||||
# Mouse stuff
|
||||
set -g mouse on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue