Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Shortcut in Pycharm or Sublime Text 2 for Jump out of matching brackets?

Is there a shortcut in Pycharm or Sublime Text 2 for jumping out of matching brackets and " or ' pairs?

Now I out it by press left, agony.

like image 713
Sparkxxf Avatar asked Dec 16 '11 17:12

Sparkxxf


People also ask

How do I get my cursor to move out of brackets?

Space is just a space, and Cmd+Space moves the cursor to the end of the text on that line. Thanks so much!

How do you match braces in sublime?

Ctrl + M ( ⌃ + M on Mac) for jump between matching brackets.


2 Answers

Here is how I did it in Sublime:

{ "keys": ["shift+enter"], "command": "move", "args": {"by": "subword_ends", "forward": true} }

Shift-Enter breaks out of quotes and brackets, and Super-Enter creates a new line without breaking the current one

like image 110
firedev Avatar answered Oct 24 '22 16:10

firedev


In Sublime Text 2, Ctrl+M works for () and [].

like image 22
Jawher Avatar answered Oct 24 '22 17:10

Jawher