vote up 3 vote down star

I want to know if there is any way by which I can paste yanked text to the command window. For eg. if I have yanked a word and I want to grep it in some location I cant simply paste the word using 'p'. However if I copy it to clipboard, Shift-Insert will paste the same thing.

Is there any tweak available which would allow me to paste yanked text to the vim command prompt? I am using gvim on Windows.

flag

5 Answers

vote up 7 vote down check

try to use

<ctrl+r>"

where " stands for default register.

link|flag
1  
Note that this also work in normal insert mode, not only on the command line. – blixtor May 25 at 13:29
vote up 4 vote down

<C-R>" Will paste default buffer. Alternately, you can use q: to open a buffer for the next command. try :help q:

link|flag
vote up 2 vote down

Press :, then ctrl-r and then ", all while in normal mode.

link|flag
vote up 1 vote down

You can yank to the clipboard using the * named buffer. For instance, this will copy the current line to the clipboard:

"*yy

So you can copy a line using this, and then paste it with shift-insert in the commandline.

Similarly, you can paste from the clipboard like this:

"*p
link|flag

Your Answer

Get an OpenID
or

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