Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There must be a really simple solution here that I'm missing:

Say you've got an area selected in vim. How can you copy it into the OS X clipboard?

(Hint: the OS X clipboard can be written to via pipe to /usr/bin/pbcopy)

share|improve this question

12 Answers

up vote 19 down vote accepted

Depending on which version of vim I use, I'm able to use the + register to access the clipboard.

http://vim.wikia.com/wiki/Mac_OS_X_clipboard_sharing may have some ideas that work for you as well.

share|improve this answer
+ is only for X11? – ʞɔıu Mar 24 '09 at 16:10
1  
For folks with VIM compiled without +clipboard the link above is an excellent resource to give workarounds w/o recompiling VIM – sdjuan Dec 25 '12 at 21:29

For MacVim and Windows Gvim, simply add the following to your ~/.vimrc:

set clipboard=unnamed

Now all operations such as yy, D, and P work with the clipboard. No need to prefix them with "* or "+.

share|improve this answer
This is a great tip. I've been looking all over for it. – andrewj Mar 17 '10 at 3:31
6  
that also works with vim (shell) with recent 7.3+ versions. – Vincent G Apr 21 '11 at 10:02
I've spent all morning figuring out how to separate y, d and P commands from ⌘-C and ⌘-V that MacVim enables for you and finally came across this. Sure enough, I had added this to my vimrc when I was a vim juvenile and it has frustrated me ever since. – Jonathan Dumaine Mar 7 at 21:19

If the clipboard is enabled, you can copy a selected region to the clipboard by hitting "*y

To see if it is enabled, o a vim --version and look for +clipboard or -clipboard. For example, it's not enabled by default on my 10.5.6 box:

% which vim
/usr/bin/vim
% vim --version
VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Nov 11 2008 17:20:43)
Included patches: 1-22
Compiled by _www@b77.apple.com
Normal version without GUI.  Features included (+) or not (-):
...
-clientserver -clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments
...

If it had been compiled with +clipboard, I'd be able to use the "* register to access the system clipboard.

I downloaded the 7.2 source and compiled it (easy as tar xjf vim-7.2.tar.bz && cd vim72 && ./configure && make && sudo make install), and the clipboard was enabled:

% which vim
/usr/local/bin/vim
% vim --version
VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Mar 24 2009 17:31:52)
Compiled by rampion@Myrrhy.local
Normal version with GTK2 GUI.  Features included (+) or not (-):
...
+clientserver +clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments
...

However, even after compiling, I couldn't copy to the clipboard when running vim in Terminal.app, only in X11.app.

share|improve this answer
1  
This answer is pure gold, I wish I could upvote it more than once! – nfm Sep 3 '09 at 1:55
3  
I compiled the latest version with +clipboard and now the native clipboard works with it as the * register. Also, setting "set clipboard=unnamed" in your .vimrc file makes the system clipboard the typical one. I actually used github.com/adamv/homebrew/blob/duplicates/Library/Formula/… this homebrew formula to build and compile it. – rado Sep 14 '10 at 17:47
Hmm, not sure why Vim didn't show up in my Homebrew, but I copied it down to /usr/local/Library/Formula, ran brew install vim, and it failed with "ld: library not found for -lruby-static". I'm using RVM and was on 1.8.7. When I switched to 1.9.2 the error was "ld: library not found for -lruby.1.9.1". The solution was to use system Ruby by first executing rvm use system. – justsee Mar 4 '11 at 9:37
@justsee - thanks! you helped me figure that problem out too – abyx Apr 14 '11 at 7:04

You can visually select text and type :w !pbcopy

Or you can include the below key mappings in your .vimrc file. They cut/copy text in visual mode to the operating system's clipboard.

vmap <C-x> :!pbcopy<CR>  
vmap <C-c> :w !pbcopy<CR><CR> 

source: http://drydevelopment.com/blog/vim-pbcopy-on-os-x

share|improve this answer
You can also select text from the command line like :1,10w !pbcopy to copy lines 1-10 to the clipboard. The w is important along with the space after it to keep original text in place. The source link above is now broken but there is a discussion here: vim.wikia.com/wiki/Mac_OS_X_clipboard_sharing – sdjuan Dec 25 '12 at 21:22

If you are using MacPorts you can upgrade your VIM to include clipboard support via:

port install vim +x +x11

Now you use the "+ register to yank your text directly to your Mac clipboard. Works like a charm.

share|improve this answer
1  
This is just what I needed. One just needs to make sure that $PATH is correct and you're getting /opt/local/bin/vim not the Apple vim. – gyaresu Dec 13 '11 at 8:58

double-quote asterisk ("*) before any yank command will yank the results into the copy buffer. That works for Windows and Linux too.

share|improve this answer
2  
just seems to emit a bell character and no other effect for me – ʞɔıu Mar 24 '09 at 15:45
3  
In X11, Vim's "* is PRIMARY, "+ is CLIPBOARD, and SECONDARY doesn't get a named register. (Not that anybody uses it...) – ephemient Mar 24 '09 at 15:53
This one was the only one the worked for me. I'm SSH-ing with putty on Windows. – dkinzer Dec 6 '11 at 17:18

Fakeclip implements the + and * buffers if they aren't natively supported.

share|improve this answer

command-C? This at least works for the vim launched from within Terminal.app for text selected with mouse.

share|improve this answer
3  
good naive answer but breaks output if you're using vertically-split subwindows in vim (which is actually the case I have in mind), or if the result is longer than one terminal screen – ʞɔıu Mar 24 '09 at 15:49
1  
You are right, I didn't think of these cases. I leave my answer just to prevent others to give similar not helpful answers. – mouviciel Mar 24 '09 at 16:00

For Ubuntu users, the package you want to retrieve for using the clipboard is vim-full. The other packages (vim-tiny, vim) do not include the clipboard feature.

share|improve this answer
vim-full is no longer an ubuntu package name. the default vim package (7.3.154) has a minimal set of features, including -clipboard. Installing vim-gtk or vim-nox will provide a +clipboard version. – spazm Jun 11 '12 at 22:19

This is what I'm struggling with:

  1. Open a local terminal.
  2. SSH to another machine.
  3. Open a file with vim, or vimx
  4. enter visual selection mode and select some text
  5. Now I want to copy this to my system clipboard...can't seem to do this.

I've tried "+y "*y and set clipboard=unnamed

None of this seems to copy the vim visual blocked text to my system clipboard of any kind...

This would very helpful - but even more so when using vimdiff, where a regular mouse-based selection will not work - or if you have line numbers showing in vim.

thanks.

share|improve this answer
See rampion's answer – dan-klasson Nov 21 '11 at 21:16
what you are asking here :Dave is a bit tricky since the vim copy buffer is on a remote machine so any vim selection commands will work on that remote machines memory. In this case as far as I can tell you only have access to what is displayed locally so the best you can do is select what you can see and use command-c to copy to your local OS X clipboard. AFAIK rampions answer does not apply in this case. BTW you probably should ask this as a separate question. – sdjuan Dec 25 '12 at 21:48

You can use MacVim when you're on a Mac to easily access the clipboard using the standard OS keys.

It's also fully backward compatible with normal Vim, so I don't even have to have a separate .vimrc.

share|improve this answer

Command-c works for me in both MacVim and in the terminal.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.