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

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

Answer

"ayiw

Explanation

Use "a to specify register a, then yiw to yank the inner word. The word is stored in register a for later pasting with "ap.

Next

How do you yank the same text to multiple registers?