Is there any way to copy all lines from open file to clipboard in VI editor. I tried yG but its not using clipboard to store those lines.

So is it possible?

link|improve this question

feedback

10 Answers

up vote 39 down vote accepted

You should yank the text to the * or + registers:

gg"*yG

Explanation:

  • gg
    • gets the cursor to the first character of the file
  • "*y
    • Starts a yank command to the register * from the first line, until...
  • G
    • go the end of the file
link|improve this answer
3  
Nice...I never knew about the <kbd> tag... – Jason Punyon Oct 25 '09 at 4:42
1  
How do you mark up the text so it looks like keys? I haven't seen that yet on SO. – Jergason Oct 25 '09 at 4:44
Ah, beaten to the punch. – Jergason Oct 25 '09 at 4:45
9  
Vim can only access the system clipboard if it is compiled with xterm_clipboard enabled. To find out whether you have this feature, run :version in vim, and look for the +xterm_clipboard flag. If it is preceded by a minus sign, then you won't have this functionality. If this is the case, you might want to compile vim yourself, or run gvim which usually has this feature enabled. – nelstrom Oct 26 '09 at 15:12
1  
The problem with this approach is that it moves the cursor and scrolls the window around. Twice. The other answer has far fewer keystrokes and drawbacks :) – sehe Sep 13 '11 at 7:50
show 3 more comments
feedback
:%y+

to yank all lines

link|improve this answer
4  
+1 IMO much easier than accepted answer. 6 keystrokes to 4... – Lieven Nov 19 '10 at 8:22
1  
Plus it won't change cursor location. – progo Dec 3 '10 at 10:56
Very nice shortcut – J.W. Dec 30 '10 at 16:42
7  
VIM says "E488: Trailing characters". However :%y worked. – guangnan Jul 26 '11 at 2:30
better than accepted answer – Mustafa Kamal Jan 20 at 9:30
show 2 more comments
feedback

The clipboard is buffer +. To copy to clipboard, do "+y[movement]. So, gg"+yG.

Similarly, to paste from clipboard, "+p

link|improve this answer
feedback

If you're using Vim in visual mode, the standard cut and paste keys also apply, at least with Windows.

  • CTRLA means "Mark the entire file.
  • CTRLC means "Copy the selection.
  • ESC means "De-select, so your next key press doesn't replace the entire file :-)

Under Ubuntu terminal (Gnome) at least, the standard copy also works (CTRLSHIFTC, although there doesn't appear to be a standard keyboard shortcut for select all (other than ALTE followed by A).

link|improve this answer
5  
But if you aren't using mswin.vim, then ctrl-a increments the next number on the current line. – Mark Rushakoff Oct 25 '09 at 5:41
@Mark, this behavior is from a standard Vim install so I assume that's the default. All bets are off if the environment is configured differently, though if that were the case, I suspect the OP would know what they're doing :-) In either case, OP stated in a comment they were on Ubuntu so the Windows part of my answer probably doesn't apply. The Gnome terminal stuff would. – paxdiablo Oct 25 '09 at 5:47
feedback

There wasn't a concept of "clipboard" in Bill Joy's vi so I don't think there is a built-in way to do it.

gVim's automatic copy-anything-highlighted-to-the-clipboard feature is easiest or use an external program via :!

For Cygwin's vim I use

:%!putclip
u

Maybe Ubuntu has a CLI app like putclip??

link|improve this answer
great suggestion, thanks! there is such a program, called xclip. for details, I posted a separate answer (it would have been too confusing to read from a comment, without the extra newlines and code formatting). – Stew Mar 2 at 15:39
feedback

Same question as : Yank Entire file

link|improve this answer
feedback

This is what I do: ggVGy

link|improve this answer
2  
I'm afraid this does not answer the question, as you are yanking to the default register, not to the clipboard. – Conspicuous Compiler Oct 21 '10 at 3:14
feedback

I've think I've got an even easier one

First put this in the .vimrc

map <C-A><C-A> ggvG$

Simply press control-a 2 times to copy everything in visual mode, then simply press "+y

link|improve this answer
This is essentially the same answer as @Tordek provided, but requires more keystrokes despite using map to reduce the number of keystrokes necessary. And, like all of the other suggestions that use gg, it moves the cursor unnecessarily. I would suggest if you're going to add another answer after so long, check out @ldigas's answer and incorporate that into a map so you're adding something new. – Conspicuous Compiler Dec 3 '10 at 14:16
feedback

gVim:

:set go=a

ggVG

link|improve this answer
feedback

(in reply to @rshdev, and to avoid having to recompile vim with +xterm_clipboard per @nelstrom in comments on OP)

there's a program called xclip that works like putclip on Ubuntu 11:

:%!xclip -sel clip
u

it's not installed by default. to install, use:

sudo apt-get install xclip
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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