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

How do you insert the current filename from a register?

Answer

<C-r>%

Explanation

In insert mode, <C-r>% inserts the current filename. The % register always holds the name of the current file.

Next

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