Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pydev: find all references to a function

Tags:

python

pydev

This has probably been asked before but I can't seem to find the answer. I've moved from windows to Linux and started using PyDev (Aptana) recently but what I cannot seem to find is how to find all references to a function.

like image 647
Dennis Decoene Avatar asked Oct 11 '11 19:10

Dennis Decoene


2 Answers

Ctrl+Shift+G will find all the references to a function in PyDev (F3 will go to the definition of a function).

like image 100
Fabio Zadrozny Avatar answered Nov 20 '22 04:11

Fabio Zadrozny


I believe what you are looking for is F3. If not all of the key bindings for pydev are listed at: http://pydev.org/manual_adv_keybindings.html

like image 32
eomer Avatar answered Nov 20 '22 04:11

eomer