Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pydev closing parenthesis autocomplete

Tags:

eclipse

pydev

Is there a shortcut to jump out of closing parenthesis in PyDev/Eclipse? Having to hit arrow key to move the cursor outside of the parenthesis is kind of a pain.

like image 816
Eburetto Avatar asked Oct 21 '10 08:10

Eburetto


1 Answers

As Fabio said, you can jump out by pressing TAB or Enter, but this option is turned off by default and you simply get a few spaces/a new line upon pressing TAB/Enter.

To turn this precious option on, go to:
Window > Preferences > PyDev > Editor > Typing
and check "Enable link on automatic parenthesis or literals closing".

like image 83
Bloke Avatar answered Sep 20 '22 13:09

Bloke