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

What is the selection register in Vim and how do you use it?

Answer

"*p

Explanation

The * register represents the primary selection (middle-click paste in X11). Use "*y to yank to it and "*p to paste from it.

Next

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