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

How do you paste from a named register before the cursor?

Answer

"aP

Explanation

Use "aP (uppercase P) to paste the contents of register a before the cursor position, as opposed to "ap which pastes after.

Next

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