Vim Tips Wiki
No edit summary
No edit summary
Tags: Visual edit apiedit
(15 intermediate revisions by 13 users not shown)
Line 1: Line 1:
  +
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=687
 
|id=687
 
|previous=686
 
|previous=686
 
|next=688
 
|next=688
|created=March 27, 2004
+
|created=2004
 
|complexity=basic
 
|complexity=basic
 
|author=Khairulmizam Samsudin
 
|author=Khairulmizam Samsudin
Line 12: Line 12:
 
|category2=
 
|category2=
 
}}
 
}}
  +
 
As of my knowledge there is no clipboard register for Mac OS X unlike Windows ([[VimTip21]]). However you can use pbcopy/pbpaste command to achieve the same thing.
 
As of my knowledge there is no clipboard register for Mac OS X unlike Windows ([[VimTip21]]). However you can use pbcopy/pbpaste command to achieve the same thing.
   
Line 31: Line 32:
 
</pre>
 
</pre>
   
Operations such as <tt>yy</tt>, <tt>D</tt>, and <tt>P</tt> work with the system clipboard. No need to prefix them with <tt>"+</tt> or <tt>"*</tt>.
+
Operations such as <code>yy</code>, <code>D</code>, and <code>P</code> work with the system clipboard. No need to prefix them with <code>"+</code> or <code>"*</code>.
  +
  +
You can use homebrew to install the latest vim and you're clipboard should work in the terminal.
  +
  +
brew install vim
 
----
 
----
I find that the <tt>+</tt> register works for transferring back and forth to the OS X clipboard.
+
I find that the <code>+</code> register works for transferring back and forth to the OS X clipboard.
   
 
----
 
----
Line 39: Line 44:
   
 
----
 
----
I use <tt>4,8w !pbcopy</tt> which prevents the deletion of lines within the window-file where I run the command.
+
I use <code>4,8w !pbcopy</code> which prevents the deletion of lines within the window-file where I run the command.
   
 
----
 
----
Line 61: Line 66:
 
</pre>
 
</pre>
   
Comment: the nmap commands work perfectly, but unfortunately the vmap-copy doesn't (it grabs the whole line instead of the selected text). I'm working on Mac OS X. I will try to figure out a workaround later.
+
Comment: the nmap commands work perfectly, but unfortunately the vmap-copy doesn't (it grabs the whole line instead of the selected text). I'm working with the non-GUI version on Mac OS X. Later I will try to figure out a workaround.
 
----
 
----
 
Use {{script|id=2098|text=fakeclip}} pseudo clipboard register for non-GUI version of Vim on Cygwin and Mac OS X
 
Use {{script|id=2098|text=fakeclip}} pseudo clipboard register for non-GUI version of Vim on Cygwin and Mac OS X
Line 68: Line 73:
 
It looks like there's a problem with fakeclip on Mac OS X (I don't know which versions are affected). For everyone who gets "Platform not supported: Unknown" or something like this should try this:
 
It looks like there's a problem with fakeclip on Mac OS X (I don't know which versions are affected). For everyone who gets "Platform not supported: Unknown" or something like this should try this:
   
In <tt>autoload/fakeclip.vim</tt>: Search for <tt>system('uname -o')</tt> and change it to <tt>system('uname')</tt>. Now it should work.
+
In <code>autoload/fakeclip.vim</code>: Search for <code>system('uname -o')</code> and change it to <code>system('uname')</code>. Now it should work.
   
 
----
 
----
  +
Another tip: For cross-platform clipboard sharing you can use the open-source (GPL) [http://clipboardmshare.steweche.co.uk/ ClipboardMultiSharer] with text and image data on any platform that runs Java; in particular, Mac OS X, Windows and Linux.
  +
  +
----
  +
Since version 7.3 the console version of Vim supports Mac OS X clipboard. As noted above just add the following to ~/.vimrc
  +
<pre>
  +
set clipboard=unnamed
  +
</pre>
  +
  +
----
  +
As of Mountain Lion, the previous tip does not appear to work in system-provided vim; yanked lines do not go into the system clipboard, nor does anything yanked to the * or + registers.
  +
  +
It does however work with MacVim in terminal mode.
  +
  +
----
  +
Also on Lion
  +
<pre>
  +
set clipboard=unnamed
  +
</pre>
  +
no longer works but pbcopy and pbpaste still do. Tip is still valid.
  +
  +
----'''Is +clipboard turned on ?'''
  +
  +
Check to see if your vim supports +clipboard, with
  +
  +
vim --version
  +
  +
My vim didn't have +clipboard. I added it with "brew install vim" then added an alias to my bash profile (~/.bash_profile):
  +
  +
alias vim="/usr/local/bin/vim"

Revision as of 16:51, 3 June 2015

Tip 687 Printable Monobook Previous Next

created 2004 · complexity basic · author Khairulmizam Samsudin · version 5.7


As of my knowledge there is no clipboard register for Mac OS X unlike Windows (VimTip21). However you can use pbcopy/pbpaste command to achieve the same thing.

Example:

:.!pbcopy "Copy current line clipboard
:4,8!pbcopy "Copy line 4 to 8
:!echo "%:p" | pbcopy "Copy current filename to clipboard
:r !pbpaste "Paste clipboard content to current line

References

Comments

For MacVim and Windows Gvim, I have the following in my ~/.vimrc:

set clipboard=unnamed

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

You can use homebrew to install the latest vim and you're clipboard should work in the terminal.

brew install vim


I find that the + register works for transferring back and forth to the OS X clipboard.


I failed to mention that I compile Vim with '--without-x --disable-gui' therefore I don't have access to the unnamed registers. pbcopy/pbpaste is a work around.


I use 4,8w !pbcopy which prevents the deletion of lines within the window-file where I run the command.


I've got the following lines in my .vimrc:

map <F2> :.w !pbcopy<CR><CR>
map <F3> :r !pbpaste<CR>

Pressing <F2> copies the current line to the clipboard, pressing <F3> pastes the current content from the clipboard.


My maps just add onto what these guys have worked on.

  • <F1> pastes, but I have it configured so it works very well in insert mode and in normal mode. The nopaste setting makes sure that auto-indent doesn't go crazy when you try to paste something in.
  • <F2> copies text. If you are in normal mode, it will just grab the line your working on. If you in visual mode however, it will grab all the selected text.
nmap <F1> :set paste<CR>:r !pbpaste<CR>:set nopaste<CR>
imap <F1> <Esc>:set paste<CR>:r !pbpaste<CR>:set nopaste<CR>
nmap <F2> :.w !pbcopy<CR><CR>
vmap <F2> :w !pbcopy<CR><CR>

Comment: the nmap commands work perfectly, but unfortunately the vmap-copy doesn't (it grabs the whole line instead of the selected text). I'm working with the non-GUI version on Mac OS X. Later I will try to figure out a workaround.


Use fakeclip pseudo clipboard register for non-GUI version of Vim on Cygwin and Mac OS X


It looks like there's a problem with fakeclip on Mac OS X (I don't know which versions are affected). For everyone who gets "Platform not supported: Unknown" or something like this should try this:

In autoload/fakeclip.vim: Search for system('uname -o') and change it to system('uname'). Now it should work.


Another tip: For cross-platform clipboard sharing you can use the open-source (GPL) ClipboardMultiSharer with text and image data on any platform that runs Java; in particular, Mac OS X, Windows and Linux.


Since version 7.3 the console version of Vim supports Mac OS X clipboard. As noted above just add the following to ~/.vimrc

set clipboard=unnamed

As of Mountain Lion, the previous tip does not appear to work in system-provided vim; yanked lines do not go into the system clipboard, nor does anything yanked to the * or + registers.

It does however work with MacVim in terminal mode.


Also on Lion

set clipboard=unnamed

no longer works but pbcopy and pbpaste still do. Tip is still valid.


Is +clipboard turned on ?

Check to see if your vim supports +clipboard, with

vim --version

My vim didn't have +clipboard. I added it with "brew install vim" then added an alias to my bash profile (~/.bash_profile):

alias vim="/usr/local/bin/vim"