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

How do you access the last inserted text in Vim?

Answer

<C-r>.

Explanation

In insert mode, <C-r>. inserts the text that was typed during the last insert operation. The . register stores this text.

Next

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