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.
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.
In Sublime Text 2, Ctrl+M works for () and [].
There's no specific shortcut for this in PyCharm. You can use Ctrl-Left/Right (this works for word-by-word navigation in all contexts), or use Ctrl-W to extend the selection to the range you need and then press Left or Right to jump out of it.
There is plugin called "BracketHighlighter". Besides of highlighting brackets and quotes, it supports a bracket jumping by pressing Alt+Up/Alt+Down. Quite handy.
Here is how I did it in Sublime:
Shift-Enter breaks out of quotes and brackets, and Super-Enter creates a new line without breaking the current one