Today I found a useful reddit thread:
Type d/<word>
and it will delete until that word.
Also:
A truly mindblowing thing is the concept of search-offset (
:h search-offset
). By specifying modifiers likee
,s
,+
, - etc at the end of the search command you can specify how much of the match is to be included. For examplec/word/e
changes till the end of word. Similarlyd/word/s+2
deletes till r of word. The modifiers +, - can specified to indicate number of lines to offset.