- Remove blank lines
:g/^$/d
g = all occurence, d = delete - Search and replace
- Replace foo with bar
:%s/foo/bar/g
%s = all lines, all occurence:s/foo/bar/g
s = current line, all occurence:5,12s/foo/bar/g
lines 5-12, all occurence
- Replace foo with bar