vote up 6 vote down star
4

I often write something in gvim, then need to copy-paste it into another application.

Is there an easy way to yank the entire file? I usually do something like this, but is there a better way that I'm missing out on?

ggVG"+y

(Go to top, visual-line mode, go to bottom, yank)

flag

63% accept rate

8 Answers

vote up 17 vote down check

I use :%y+

link|flag
That's what I was looking for, I could never figure out how to do that. Thanks. – Chad Birch May 6 at 15:09
vote up 6 vote down

ggyG (go to the first line, yank to the last line)

Edit: Ah, system clipboard. Doesn't exactly roll off the fingers, but: gg"+yG

link|flag
vote up 3 vote down

Another method is this:

ggyG

Go to the top, and yank to the bottom.

link|flag
vote up 3 vote down

ggyG

(Go to top, yank to bottom)

link|flag
vote up 2 vote down

:0,$ y

I dunno which way is easier.

link|flag
vote up 2 vote down

Or simply in your .vimrc:

nmap <silent> <F5> ggVG"+y

So you can just use one key :)

link|flag
vote up 1 vote down

A working solution in old vi is :r filename in the new file.

link|flag
vote up 0 vote down

On Windows I often just do CTRL-A, CTRL-C to copy all to the windows clipboard... Can't get easier than that!

I'm using a standard gvim 7.1 from the website...

(BTW: also works on my mac with MacVim and that funny mac-key+A, mac-key+C)

link|flag
1  
windows gvim adds some extra shortcuts that aren't in the other versions, to try and make it fit in better with windows users. ctrl+a, ctrl+c, are two examples of those. – davr May 6 at 17:53
1  
Mm, ctrl-c has quite a different meaning to a terminal user. – Xiong Chiamiov Sep 17 at 21:01
sure, but when in windows, do as the windows do :) Just saying, gvim and MacVim honor the platforms standard clipboard shortcuts - there is nothing wrong with using them either.... – Daren Thomas Sep 18 at 5:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.