Using ViM: how to redirect the output of an ex command to the current buffer or file? , you can redirect the output directly to a file, and then open it using Gedit or any other selection editor, like any other file.
:redir >your_file | silent set all | redir END
Edit:
As romainl mentioned in the comments, you can also copy it directly to the system clipboard if Vim is compiled using +clipboard . Then you can simply paste it into another use of ctrl v , as usual.
:redir @+ | silent set all | redir END
timss source share