7 lines
171 B
Markdown
7 lines
171 B
Markdown
# Vim incantations
|
|
|
|
## Delete lines matching
|
|
|
|
`:g/<pattern>/<cmd>` executes an ex command `<cmd>` on lines matching
|
|
`<pattern>`. Use the command `d` to delete the lines.
|
|
|