Skip to content

Commit

Permalink
Section on clipboard, from Thomas Adam.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Jul 5, 2013
1 parent 097a046 commit 3d39b18
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions FAQ
Original file line number Diff line number Diff line change
Expand Up @@ -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$

0 comments on commit 3d39b18

Please sign in to comment.