cc – change whole line
c$ change to end of line
:%s/this/that/gc – Change ‘this’ to ‘that’ globally in the file and on the line & confirm each
:1,100 s/this/that – Change this to that for lines 1 through 100
:e! – Reset all edits made in current file
vi + [file] – Edit and go to end of file
vi +/string [file] – Edit and go to string
Advertisements