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? |
|||
|
|
|
You should yank the text to the gg"*yG Explanation:
|
|||||||||||||||||||||
|
to yank all lines |
|||||||||||||||||||||
|
|
The clipboard is buffer Similarly, to paste from clipboard, |
|||
|
|
|
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 |
|||||||
|
|
(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:
|
|||
|
|
|
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?? |
|||
|
|
|
|||
|
|
gVim:
ggVG See
|
||||
|
|
|
This is what I do to yank the whole file:
|
|||||
|
|
On Ubuntu 12 you might try to install the package vim-gnome
I tried it, because
told me that it would have the flag xterm_clipboard disabled (indicated by - ), which is needed in order to use the clipboard functionality. -> installing the vim-gnome package on Ubuntu 12 also installed a console based version of vim, that has this option enabled (indicated by a + before the xterm_clipboard flag) |
|||
|
|
|
on Mac
|
|||
|
|