Search notes:

Vim ex command: d

The d command deletes line in a buffer.
Delete current line:
:d
Delete lines in a given range:
:range d
Copy deleted lines into register r:
:range d r

See also

Ex commands

Index