vote up 3 vote down star

Hi

When I browse code, I need to see opening and closing parenthesis/ brackets, and pressing "%" seems unproductive.

I tried :set showmatch, but it makes the cursor jump back and forth when you type in a bracket. But what to do if I am browsing already written code.

Thanks

Aman Jain

flag

25% accept rate

5 Answers

vote up 8 vote down check
DoMatchParen

in your .vimrc file

or

:DoMatchParen

within vim itself.

Edit: This comes from the pi_paren plugin (which is a standard plugin).

link|flag
but that doesn't seem to work with vim version 6.3 that I use at work Can you provide any suggestion for achieving the same functionality in vim 6.3 – Aman Jain Oct 25 '08 at 5:30
Sorry, no. Your best bet would be to upgrade to a version of vim that's less than 5 years old. I'm pretty sure you could run it from a USB key if you wanted to. – Harley Oct 27 '08 at 22:32
vote up 2 vote down

set showmatch is your best bet. you can also use the % command to jump between matching parenthesis, braces, brackets, quotes, etc.

link|flag
I mentioned in the question that pressing % every time is a pain – Aman Jain Oct 25 '08 at 5:29
vote up 0 vote down

What's the difference between 'DoMatchParen' and the showmatch option?

I believe what the author wants is braces/parenthesis that are highlighted not only when the cursor is on top of a pair of braces, but also when the cursor is in a block of code that's engulfed by a pair of braces.

Is there such a plugin/option?

link|flag
vote up 0 vote down

showmatch works for me, thanks jcoby

link|flag
vote up -5 vote down

there a nice patch out there called...

oh just forget it

link|flag
psst...it was emacs – Mark Lubin Oct 31 '08 at 3:15

Your Answer

Get an OpenID
or

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