VIM: Deleting from current position until a space

Often when developing I am confronted with a nested object that I’d like to delete from code in the middle of a line like this: htmlDoc.WriteLine(“<b><h3>” + this.cbAllSyncs.SelectedItem.ToString() + “</h3></b>”); The part that I’d like to delete is: this.cbAllSyncs.SelectedItem.ToString() I know I can count the number of words and periods and enter 7dw to delete … Read more