Is there a way to color-code parentheses in Eclipse?

Viewed 293

Is there a way to color-code matching parentheses in Eclipse? I am looking for a way to have matching parentheses be a different color when nested, similar to how Excel does it.

1 Answers

You can install the "Bracketeer for Java (JDT)" plugin from the marketplace. It highlights brackets depending on what you select in different greys (or red, in case a bracket is not matched):

enter image description here

Curly brackets as well:

enter image description here

Related