In Vim, if I have code such as (in Ruby):
anArray << [anElement]
and my cursor is on the first [, I can hop to ]>
[
]>
Using the Surround plugin for Vim, you can eliminate surrounding delimiters with ds.
ds
To install it via Vundle plugin, add
Plugin 'tpope/vim-surround'
to your .vimrc file and run :PluginInstall.
.vimrc
:PluginInstall