blog/todo-recipes/vim.md
2021-03-09 03:40:32 -08:00

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.