Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose we've opened two files A and B in vsplit mode. Now there is a pattern p in A, and one wants to yank it (switch visual mode and yy) and search for it (via typing / in command mode) in B. How does one accomplish this?

share|improve this question

1 Answer

up vote 6 down vote accepted

You can use Ctrl + R followed by " to paste the contents of the default register into a / search or a : command. If you've done the yank using yy then the text will be in the default register so this will be what you want.

If the text you want has been yanked into a register other than the default then just use the register letter or number in place of the " e.g. Ctrl + R, z to paste the contents of register z.

Search down the command line documentation for CTRL-R for some more details and special registers that can be used.

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.