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?
views:
87answers:
3
+1
A:
Assuming you mean "go to where a method/class/variable" is defined, in Eclipse, it is F3
jason
2010-01-21 06:31:28
+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).
VonC
2010-01-21 06:34:41
+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
2010-02-12 01:03:11