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

How do you paste a register using the :put command?

Answer

:put a

Explanation

The :put a command pastes register a on a new line below the cursor. Use :put! a to paste above. Works from command-line mode.

Next

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