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

How do you yank an entire paragraph into a named register?

Answer

"ayip

Explanation

Use "ayip to yank the inner paragraph into register a. The ip text object selects the paragraph without surrounding blank lines.

Next

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