Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 218 Bytes

new_line.md

File metadata and controls

16 lines (11 loc) · 218 Bytes

Vim: New Line

Google no more for the new line character search for vim. \r. It's very simple but I always forget.

Usage:

#example text
this is my text

:%s/is my/is\rmy/

# results to
this is
my text