Im trying to follow some python code using Ctrl+click, but Im trying to follow a classname.run() but it gets 180 results and complains.. are there any plugins that is able to semi-compile the code to be able to find the dynamic object type?
Share
Not sure without the full example, but PyDev does a code-analysis to try to discover the actual type. When it goes on to show all the matches in the workspace, it means that it wasn’t able to show it (which is usually the case if that was a parameter).
If you have the class name, usually selecting the class name in the editor and doing a CtrlShiftT is the easiest way to go to the class (and in a class CtrlO is the easiest way to find a method or field).