blob: fc4b931f05dc609694446a05d30640630a314c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Vi mode for copy
setw -g mode-keys vi
# Mouse selection
set -g mouse on
# v to start selection, y to yank (like vim)
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-pipe-no-clear "pbcopy"
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-no-clear "pbcopy"
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-no-clear "pbcopy"
|