Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I browse code in Vim, 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?

share|improve this question

4 Answers

up vote 19 down vote accepted
DoMatchParen

in your .vimrc file

or

:DoMatchParen

within vim itself.

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

share|improve this answer
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 Holcombe Oct 27 '08 at 22:32

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

share|improve this answer
I mentioned in the question that pressing % every time is a pain – Aman Jain Oct 25 '08 at 5:29

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?

share|improve this answer

Maybe what you want is this plugin:

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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