How do I duplicate the current line to the end of the file without yanking or moving the cursor?
:.t$
The Ex command :.
:.t$
The Ex command :.
<C-y> and <C-e>
In Insert mode, copies the character at the same column position from the line above the cursor, and copies the character from the line below.
:10,15t 25
Use :t (copy) with a range and destination.
qa/pattern\nyy}pq
Record a macro that searches for a pattern, yanks the matching line, goes to the end of the paragraph, and pastes it.