vote up 7 vote down star
5

Given this line of code in C:

printf("%3.0f\t%6.1f\n", fahr, ((5.0/9.0) * (fahr-32)));

Is there a way to delete or yank from the first bold parenthesis to its matching parenthesis? I thought about df), but that only will get you to just after the 9.0.

Is there a similar way to get vim to grab everything between matching braces, regardless of newlines?

flag

5 Answers

vote up 21 vote down check

Various Motions: %

The % command jumps to the match of the item under the cursor. Position the cursor on the opening (or closing) paren and use y% for yanking or d% for deleting everything from the cursor to the matching paren.

This works because % is a "motion command", so it can be used anywhere vim expects such a command. From :help y:

["x]y{motion}       Yank {motion} text [into register x].  When no
                    characters are to be yanked (e.g., "y0" in column 1),
                    this is an error when 'cpoptions' includes the 'E'
                    flag.

By default, "item" includes brackets, braces, parens, C-style comments and various precompiler statements (#ifdef, etc.).

There is a plugin for "extended % matching" that you can find on the Vim homepage.

You can read the documentation on % and related motion commands by entering :help various-motions in command mode.

object-select

There is another set of motion commands that you can use in Visual mode to select various text objects.

To solve your specific problem you would do the following:

printf("%3.0f\t%6.1f\n", fahr, ((5.0/9.0) * (fahr-32)));
                                   ^

Let's say your cursor is positioned at ^. Enter the following sequence to select the part you are looking for:

v2a)

First v enters Visual mode, then you specify that you want to go 2 levels of parens up. Finally the a) selects "a block". After that you can use d or x to delete, etc.

If you don't want to include the outer parens, you can use "inner block" instead:

v2i)

See :help object-select for the complete list of related commands.

link|flag
Thanks! I knew about % switching between matching items; didn't know it was useful within commands as well. +1 and accepted. – romandas Jan 1 at 20:32
vote up 8 vote down

What about dib or di(.

It will delete the inner (...) block where the cursor is.

I love text-object motions and selections!

link|flag
Luckily, this question is the first hit when I google for it – I don’t know how many times this answer has saved me. And I always forget it … :-( – Konrad Rudolph Nov 21 at 12:38
vote up 5 vote down

You can use d% for deleting and y% for yanking.

link|flag
While correct, this answer would be nice if it explained the why... – hop Jan 1 at 20:21
% is the movement specifier for "matched parenthesis, bracket, or brace". Any movement specification can be paired with d and y (and many other things). – chaos Jan 1 at 20:30
@hop, You asked for an explanation (in essence). Someone interested in why could possibly open the comments and read chaos's explanation. – strager Jan 1 at 20:32
i did not ask for anything, i suggested that the answer could be made more useful with an explanation. – hop Jan 1 at 20:36
vote up 2 vote down

Place your cursor on the first parenthesis, then press v%y or v%d.

link|flag
Great! % jumps to the matching paren. So you can even use d% and y%. – unbeknown Jan 1 at 20:18
While correct, this answer would be nice if it explained the why... – hop Jan 1 at 20:20
What is the purpose of the 'v'? I've always used 'y%' or 'd%'. Also, in classic vi, 'v' is one of the few unused letters. (I'll guess: v% is a visual highlight, and then the d/y operates on that scope?) – Jonathan Leffler Jan 1 at 20:22
OK - tests confirm v% highlights the range. Useful, but not always necessary (thanks to the undo). Live and learn. – Jonathan Leffler Jan 1 at 20:25
Note, too, that 'd%' can start at the beginning of a function name, and will delete the entire function call. It also works for '{}', '[]' and even '<>' pairs. – Jonathan Leffler Jan 1 at 20:26
show 1 more comment
vote up -2 vote down

How about 3df)? This way you have to count how many closing parens you want to delete, though.

link|flag
And, because of the counting, the % operator (motion) is the better choice. – Jonathan Leffler Jan 1 at 20:59

Your Answer

Get an OpenID
or

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