vote up 2 vote down star

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

Using gvim on Windows.

flag

78% accept rate

3 Answers

vote up 6 vote down check

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|flag
<C-R>+ works to paste into the ex-command line. But How do I copy the ex-command into the clipboard? – Ayman Sep 7 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 at 11:29
Aaah. Didn't know about the ex-history window. Exactly what I need. – Ayman Sep 7 at 11:43
My bad, It's q:, not q!: Corrected the answer (thx Maxim) – soulmerge Sep 7 at 13:24
vote up 3 vote down

Enter command history with (from normal mode)

q:

Then select and copy(yank) commands you need with

"*y
link|flag
vote up 0 vote down

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|flag
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 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 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 at 5:59

Your Answer

Get an OpenID
or

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