remove lines starting with string
:g/^1.2.3.4.*$//d
remove all empty lines
:g/^$/d
:g/profile/d
delete line that contains “profile”
Welcome to my world
remove lines starting with string
:g/^1.2.3.4.*$//d
remove all empty lines
:g/^$/d
:g/profile/d
delete line that contains “profile”