How can we use vim to delete characters from the beginning of the line till the cursor.
Say, we have a string “hello world” while the cursor is on “w”. How can we delete from “h” till “w”.
How can we use vim to delete characters from the beginning of the line
Share
Try
d0.0denotes the beginning of the line.