Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse highlight matching parenthesis

Tags:

eclipse

I see plenty of posts about matching brackets, however not so much love for parenthesis. In Eclipse how do I get matching parenthesis to highlight? I'm working in java and groovy.

like image 735
Steve Avatar asked May 10 '26 08:05

Steve


1 Answers

Open any Java file in Java editor inside eclipse. Put caret just after opening or closing parenthesis. You can see the corresponding matching parenthesis highlighted, but unfortunately the default highlight background and foreground colors are not good.

So change this color in Windows > Preferences > Java > Editor > Appearance color option > Matching brackets highlight

Check this Bracketeer plugin which has many other features along with showing matching brackets. But it works for only C/C++ or Java code not for groovy.

like image 65
Chandrayya G K Avatar answered May 12 '26 04:05

Chandrayya G K