Add tmux copy/pasta.

This commit is contained in:
David Tomaschik
2018-06-11 21:55:00 -07:00
parent 08d9567bdf
commit ba546d478e

View File

@@ -57,3 +57,7 @@ bind M \
set -g mouse-select-pane off \;\
set -g mouse-select-window off \;\
display 'Mouse: OFF'
# tmux X clipboard integration
bind C-c run "tmux show-buffer | xsel -i -b"
bind C-v run "tmux set-buffer -- \"$(xsel -o -b)\"; tmux paste-buffer"