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

What is the unnamed register and how does it work?

Answer

""p

Explanation

The unnamed register "" is the default target for yank, delete, and change operations. It mirrors the last used register. p without a register prefix uses it.

Next

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