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
link|improve this question
3  
I would do xf], but it doesn't do paren-matching. Or, first do a manual paren-matching by %, then x followed by two backticks, followed by x. – Alok Jan 18 '10 at 6:17
excellent question. I'm a prolific vim user, and this does come up from time to time, and I have no good built-in solution. – Peter Jan 18 '10 at 6:17
feedback

3 Answers

up vote 13 down vote accepted

http://www.vim.org/scripts/script.php?script_id=1697

link|improve this answer
2  
An explanation: This is a vimscript by Tim Pope which adds a "ds[" command that does what I was looking for. – Josh Jan 19 '10 at 2:39
feedback

ma%x`ax (mark position in register a, go to matching paren, delete char, go to mark a, delete char).

EDIT:

%x``x does the same thing (thanks to alok for the tip)

link|improve this answer
5  
As I said in my main comment, you don't need a manual mark: you can go to the last position by two backticks. So %x``x is faster. – Alok Jan 18 '10 at 6:22
This is similar to what I've been doing, but it's an awful lot of key-presses for an editor that's supposed to be very key-press-efficient. – Josh Jan 19 '10 at 2:36
I like %%x``x better since you can be anywhere inside the parens. – Adam Lindberg Jan 17 at 11:17
feedback

The other answers work fine if you want to delete delimiters one line at a time. If on the other hand you want to remove a function and it's delimiters from the entire file use
:%s/function(\(.*\))/\1/g
which takes
function(arguments)
to
arguments
everywhere in the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.