Answers for "vim delete rest of line"

22

vim delete line

# Basic syntax:
dd

# Note, add a number in from of dd to delete that many lines, e.g.:
5dd # Delete the next 5 lines
Posted by: Guest on October-10-2020
1

vim delete rest of line

[D] - delete from cursor until end of the line and leave you in command mode.
[C] - delete from cursor until end of the line and leave you in insert mode.
Posted by: Guest on March-03-2021

Browse Popular Code Answers by Language