In Vim, if I have code such as (in Ruby):
anArray << [anElement]
and my cursor is on the first '[', I can hop to ']' with the "%" key, and I can delete all the content between the '[]' pair with "d%", but what if I just want to delete the '[' and ']' leaving all the remaining content between the two. In other words, what's the quickest way to get to:
anArray << anElement