Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 352 Bytes

vim.md

File metadata and controls

32 lines (22 loc) · 352 Bytes

Delete current line:

dd

Delete all lines in file:

gg
dG
Details gg moves the cursor to first line of the file.

dG deletes from current line to end of the file.

Save and quit:

:wq

Quit without saving:

:q!