user496949
user496949

Reputation: 86085

Is there any hotkey to jump between braces?

In Eclipse, is there any hotkey to jump between braces?

Upvotes: 3

Views: 398

Answers (2)

dogbane
dogbane

Reputation: 274612

The following shortcut will jump to the matching brace or print "No matching bracket found" if it doesn't exist.

CTRL + SHIFT + P

Can also be used for parentheses, brackets and diamonds.

Upvotes: 2

Kellindil
Kellindil

Reputation: 4533

You can use Ctrl+Shift+P if you need to find the matching bracket of the selected one.

Also note that you can use Ctrl+Shift+L to see all available key shortcuts for the editor you're in (and use it a second time to see a list of all potential key bindings, along with the ability to filter on the list and edit the shortcuts).

Upvotes: 6

Related Questions