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

Let us say that I yanked the following word: Cheese. Now I want to find Cheese within a text document. I hit the forward slash key(/)... and this is where I end. Is there a way to search with Yanked word? Also, is there a way you can use yanked words in substitution(s:/yanked/beef/g)?

share|improve this question

1 Answer

The most recently yanked text will be stored in the 0 and " registers (if no register was explicitly specified e.g. by "xy).

Then you can paste the text of any that register in the last line (either in search mode / or in last line command mode : ) with Ctrl-RX, where X is the register you want to paste.

For example:

/Ctrl-R0

Will paste the contents of the register 0 in the forward search command pattern.

share|improve this answer
Thank you, you've answered my question. – RoyalPie717 Jul 23 '10 at 6:57
@RoaylPie717 - If your question was answered, you should accept the answer rather than simply leave a comment saying so. (I realize this question is 2 years old, but here's to hoping...) – nexus-bytes Jul 18 '12 at 21:28

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.