up vote 5 down vote favorite
2
share [g+] share [fb]

How to copy the ex command to the clipboard or paste it to the buffer?

Using gvim on Windows.

link|improve this question

73% accept rate
feedback

3 Answers

up vote 10 down vote accepted

The windows clipboard can be accessed through the buffer +. So pasting your clipboard as an ex-command can be done with <C-R>+. If you want to copy your ex-commands to the clipboard, you need to show the command history (q:) and copy it into the clipboard buffer ("+yy).

link|improve this answer
<C-R>+ works to paste into the ex-command line. But How do I copy the ex-command into the clipboard? – Ayman Sep 7 '09 at 11:28
I presume you can reach command history with q: from normal mode or <C-F> from ex-command mode. (:<C-F>) – Maxim Kim Sep 7 '09 at 11:29
Aaah. Didn't know about the ex-history window. Exactly what I need. – Ayman Sep 7 '09 at 11:43
My bad, It's q:, not q!: Corrected the answer (thx Maxim) – soulmerge Sep 7 '09 at 13:24
feedback

Enter command history with (from normal mode)

q:

Then select and copy(yank) commands you need with

"*y
link|improve this answer
feedback

If you source mswin.vim in your setup it will map the default Windows copy/paste keys to use the clipboard. If you want to do it yourself please see Soulmerge's answer.

link|improve this answer
Problem is that I cannot select the command to copy it. I use the mouse to select, and then that works, but it's not really the vim way. – Ayman Sep 7 '09 at 11:29
I'm not sure I follow. Normal move commands work with yank. If you want something more fancy, you can use visual mode (v/V) – Brian Rasmussen Sep 7 '09 at 11:56
I didn't know about the ex-command history Window. SO it did not make sense at first. Now it it does. – Ayman Sep 8 '09 at 5:59
feedback

Your Answer

 
or
required, but never shown

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