Delete up to the next word, including the first character - bdatko/nvim GitHub Wiki
How
How do you delete up to the next word including the first character?
" |
H |
e |
l |
l |
o |
W |
o |
r |
l |
d |
: |
T |
h |
i |
s |
i |
s |
a |
t |
e |
s |
t |
" |
||||
^ |
- if the your cursor is on top of the
T
where^
is then to delete up to the double quote you could usedt"
- to delete including the double quote you could use
df"