momodalo / vimtouch

vimtouch
Apache License 2.0
349 stars 71 forks source link

clipboard #50

Closed bk322 closed 11 years ago

bk322 commented 11 years ago

How do I insert text copied with yy -- to other android apps? It seems that android clipboard doesn't know about things I copied in vimtouch.

aulin commented 11 years ago

When you don't specify a register, you're using the unnamed register "". If you want to copy to the clipboard, you have to specify the clipboard register "+, so instead of typing just yy, type "+yy. This is a convenient shortcut to put in the quickbar. Run :h registers inside Vim for more info.

bk322 commented 11 years ago

You right -- it works! How do I close an issue?