- How does one delete a word to the left? In other words, delete the word when the cursor stands at the end of it.
- How does one delete characters to the beginning of the line?
-
How does one delete to the first whitespace to the left?
-
Any other tricks involving word deletion?
How does one delete a word to the left? In other words, delete the
Share
In general, d<motion> will delete from current position to ending position after <motion>. This means that:
Read this to learn all the things you can combine with the ‘d’ command.