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

How do you paste from a register while in visual mode?

Answer

"ap

Explanation

In visual mode, "ap replaces the selected text with the contents of register a. The replaced text goes into the unnamed register.

Next

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