Vim-adventures on level 7 emptyStr = "xx xx";

Solution 1:

Basically you can use the d command with any {motion}, see vim reference http://vimdoc.sourceforge.net/htmldoc/change.html#d.

                                      *d*
["x]d{motion}       Delete text that {motion} moves over...

And a motion is explained here http://vimdoc.sourceforge.net/htmldoc/intro.html#{motion} and can be w, b, 4j or t etc.

Hint

use t in combination

Solution

complete solution is fx -> dt"

So it is definitely not a BUG as mentioned earlier.