vote up 1 vote down star
1

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)

flag

68% accept rate
Surely the really simple solution is to stop using vim? :-) </flame fanning> – ceejayoz Mar 24 at 16:33

8 Answers

vote up 4 vote down check

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.

link|flag
+ is only for X11? – ʞɔıu Mar 24 at 16:10
vote up 2 vote down

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

link|flag
just seems to emit a bell character and no other effect for me – ʞɔıu Mar 24 at 15:45
In X11, Vim's "* is PRIMARY, "+ is CLIPBOARD, and SECONDARY doesn't get a named register. (Not that anybody uses it...) – ephemient Mar 24 at 15:53
vote up 0 vote down

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

link|flag
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 at 15:49
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 at 16:00
vote up 0 vote down

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.

link|flag
vote up 3 vote down

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.

link|flag
This answer is pure gold, I wish I could upvote it more than once! – nfm Sep 3 at 1:55
vote up 1 vote down

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 "+.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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