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?
|
Is there any way to copy all lines from open file to clipboard in VI editor. I tried So is it possible?
| |||
|
feedback
|
|
You should yank the text to the gg"*yG Explanation:
| |||||||||||||||||||
feedback
|
to yank all lines | |||||||||||||||||
feedback
|
|
The clipboard is buffer Similarly, to paste from clipboard, | |||
|
feedback
|
|
If you're using Vim in visual mode, the standard cut and paste keys also apply, at least with Windows.
Under Ubuntu terminal (Gnome) at least, the standard copy also works (CTRLSHIFTC, although there doesn't appear to be a standard keyboard shortcut for | |||||||
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
Maybe Ubuntu has a CLI app like putclip?? | |||
feedback
|
|
Same question as : Yank Entire file | ||||
|
feedback
|
|
This is what I do: ggVGy | |||||
feedback
|
|
I've think I've got an even easier one First put this in the .vimrc
Simply press control-a 2 times to copy everything in visual mode, then simply press "+y | ||||
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:
it's not installed by default. to install, use:
| |||
|
feedback
|