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

How do you paste from a specific register while in insert mode?

Answer

<C-r>a

Explanation

In insert mode, press <C-r> followed by the register name. <C-r>a inserts the contents of register a at the cursor position.

Next

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