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

How do you paste a register's contents multiple times?

Answer

5"ap

Explanation

Prefix the paste command with a count. 5"ap pastes the contents of register a five times in succession.

Next

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