Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Hi is there any way I can paste the yanked text from a vim buffer to a vim command line, as I need to search for some file names which appear in current open text and I have to manually type the file name after :e

share|improve this question

3 Answers

up vote 3 down vote accepted

Yes you can use ctrl+r + " and can see this as a reference http://stackoverflow.com/questions/906535/how-to-copy-yanked-text-to-vi-command-prompt

share|improve this answer

You can do <C-r>" to paste from the default register or <C-r>a to paste from register a.

share|improve this answer

If your cursor is on the filename before you go to command mode use Ctrl-rCtrl-f.

You could also use the command-line window for this, and then edit the command line like you would in the file buffer.

See :help c_CTRL-R_CTRL-F and :help command-line-window for more.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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