vimtricks.wiki Concise Vim tricks, one at a time.

How do you paste a register value into the search prompt?

Answer

/<C-r>a

Explanation

While in the search prompt (/), press <C-r>a to insert the contents of register a. Useful for searching previously yanked text.

Next

How do you yank a single word into a named register?