Global
Global allows us to perform some Ex command on a range (default whole buffer)
- ex. delete all lines that have the word "require" in it
:g/require/d
note: an Ex command is one starting with a colon such as :d
for delete
Global allows us to perform some Ex command on a range (default whole buffer)
:g/require/d
note: an Ex command is one starting with a colon such as :d
for delete