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)
|
|
|
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. |
|||
|
For MacVim and Windows Gvim, simply add the following to your ~/.vimrc:
Now all operations such as yy, D, and P work with the clipboard. No need to prefix them with "* or "+. |
|||||||||
|
|
If the clipboard is enabled, you can copy a selected region to the clipboard by hitting To see if it is enabled, o a vim --version and look for % 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 I downloaded the 7.2 source and compiled it (easy as % 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. |
|||||||||||||
|
|
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.
|
|||
|
|
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. |
|||||
|
|
double-quote asterisk ("*) before any yank command will yank the results into the copy buffer. That works for Windows and Linux too. |
|||
|
command-C? This at least works for the vim launched from within Terminal.app for text selected with mouse. |
|||||||||
|
|
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. |
|||
|
|
This is what I'm struggling with:
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. |
|||||
|
|
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 |
|||
|
|