Reputation: 1356
Is there a setting in the Eclipse Java editor to change the bracket highlighting to prefer the inner instead of the outer bracket, like in Notepad++? It's pretty confusing to me when I place my cursor on a bracket and it highlights the opposing bracket of a different one instead.
Basically it currently does this: (
|(text)text
)
And I want it to do this: (
|(text
)
text)
And the other way around:
It does this: (
text(text)
|)
It should do this: (text
(
text)
|)
Upvotes: 1
Views: 51
Reputation: 34165
For the Eclipse Java editor there is no such option built in.
But you can use the Bracketeer plug-in for that.
Upvotes: 1