I am using Vim 7.4 homebrew version on Mavericks, with +clipboard. Under both vim and MacVim, yanking into either + or * has no effect and pasting from either one produces an error E353: Nothing in register * (or +).
Steps to produce it:
$ vim -u None- Insert some text
"*yy"*p=>E353: Nothing in register *:echo has("clipboard")=>1
This also means that both set clipboard=unnamed and set clipboard=unnamedplus cannot properly copy & paste. Can anyone suggest how I can troubleshoot this problem?
Thanks!
Related questions:
How to make vim paste from (and copy to) system's clipboard? The accepted answer suggests:
try using "*yy or "+yy to copy a line to your system's clipboard. One or the other should work.
But both registers have no effect.