Jump to corresponding bracket in Sublime Text

Viewed 11259

I am writing big lines of code and then I had to jump from one block of code to another , how would someone jumps to the corresponding opening or closing bracket in the code in sublime text editor.

2 Answers

Before Sublime 3

Put the cursor on opening or closing tag and Press

Ctrl+m for Windows / Cmd+m for Mac

Put the cursor on any on the opening or closing bracket and press Ctrl+m , will take your cursor to the respective closing or opening bracket.

Sublime 3

ctrl+m on Windows

control + m on Mac

The Shortcuts have been updated for Mac on Sublime Text 3

Put the cursor on opening or closing tag and Press

Ctrl+m for Windows

Ctrl+m for Mac

Related