Notes on how to use vim-surround
Share this page | Read it later using CloudBreak Wallabag
Starting with:
let(:foo) { (bar + [baz]) }
ds( while on or within ( turns this into:
let(:foo) { bar + [baz] }
ds[ while on or within [ turns this into:
let(:foo) { bar + baz }
Get it here: tpope/vim-surround