How do I copy a character from the line directly above or below while staying in insert mode?
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.
category:
editing
tags:
#insert-mode
#editing
#copy
How do you copy a range of lines to another location?
Use :t (copy) with a range and destination.
category:
command-line
tags:
#command-line
#copy
#lines
How do you record a macro to copy lines matching a pattern to end of file?
Record a macro that searches for a pattern, yanks the matching line, goes to the end of the paragraph, and pastes it.
category:
macros
tags:
#macros
#copy
#pattern