SilentDev
SilentDev

Reputation: 22777

How do I get vim-gnome on Mac to enable copying to clipboard?

I am trying to enable copying to clipboard on mac using vim. Apparently vim normally does not come with this feature (and vim-gnome does). How do I get vim-gnome for mac to enable copying to clipboard?

Thanks in advance!

Upvotes: 0

Views: 243

Answers (1)

B.G.
B.G.

Reputation: 6036

how about macvim instead of vim-gnome?

brew install macvim --with-override-system-vim

Or if you don't want that, the vim in brew has clipboard support:

brew update
brew install vim --with-client-server

Upvotes: 1

Related Questions