tags:

views:

87

answers:

3

I used to use WingIde, where in a shortcut(f4, default) which I used quite often was Goto definition, which will open the definition file, and take me to it. Is there a similar shortcut for eclipse+pydev?

+1  A: 

Assuming you mean "go to where a method/class/variable" is defined, in Eclipse, it is F3

jason
+1  A: 

For Aptana Pydev, you have "Go To Definition": F3

The 'go to definition' actions enables you to get to a given definition.

  • It works well on 'self' tokens
  • It can work on methods / attributes from parameters (as the image below shows).

alt text

VonC
+1  A: 

As others answered, F3 is the way to go, but going a bit further, you might also want to take a look at ctrl+shift+t to browse all the tokens available and ctrl+shift+r to browse all the files.

Fabio Zadrozny