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

How do you use text from one register inside a macro?

Answer

qa"bpq

Explanation

While recording macro a, paste from register b with "bp. The macro will replay the paste from register b each time it's executed.

Next

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