diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-07-05 16:23:33 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-07-05 16:23:33 +0100 |
commit | 3d39b18e319cdd96bf25debcfcf52c03120e3d8e (patch) | |
tree | 027a96d72de2610ee5d5c6dd5a530863a5556201 | |
parent | 097a046e4a2e4e637a53cfc85efca1c4268242c2 (diff) | |
download | rtmux-3d39b18e319cdd96bf25debcfcf52c03120e3d8e.tar.gz rtmux-3d39b18e319cdd96bf25debcfcf52c03120e3d8e.tar.bz2 rtmux-3d39b18e319cdd96bf25debcfcf52c03120e3d8e.zip |
Section on clipboard, from Thomas Adam.
-rw-r--r-- | FAQ | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -396,5 +396,29 @@ configuration file: Or the default window options: $ tmux -Lfoo -f/dev/null start\; show -gw + +* How do I copy a selection from tmux to the system's clipboard? + +When running in xterm(1), tmux can automatically send copied text to the +clipboard. This is controlled by the set-clipboard option and also needs this +X resource to be set: + + XTerm*disallowedWindowOps: 20,21,SetXprop + +For rxvt-unicode (urxvt), there is an unofficial Perl extension here: + + http://anti.teamidiot.de/static/nei/*/Code/urxvt/ + +Otherwise a key binding for copy mode using xclip (or xsel) works: + + bind -temacs-copy C-y copy-pipe "xclip -i >/dev/null" + +Or for inside and outside copy mode with the prefix key: + + bind C-y run -b "tmux save-buffer - | xclip -i" + +On OS X, reattach-to-usernamespace lets pbcopy/pbpaste work: + + https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard $Id$ |