For my fellow #vim people.
Delete a group of lines with `:N,Nd`
For example:
```
1 this
2 is
3 an
4 example
: 2,3d <- Delete lines 2-3
```
This also works with other verbs in vim. For example copy (`y`) , change (`c`), indent (`>` or `<`),
You can even combine these action verbs with additional modifiers or commands for more powerful functionality.
For example:
`1,5>>` indents lines 1 through 5 by two levels.
`1,10!tr a-z A-Z` converts lines 1 through 10 to uppercase using the `tr` command.
Edit: Fixed an example for newer Vim versions Thanks @m1foley 🤘
#VimTip