Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5925451 By: fabioz
Actually, I think that your best choice would be using Pydev Extensions -- it already has a context insensitive code-completion that does what you want (and as you don't want imports, you can disable it's auto-import when the code-completion is performed at window > preferences > pydev > pydev extensions > auto imports), but note that will still only bring you the top-level classes correctly, not the internal tokens of each class (methods and attributes). Note that you should also disable the code-analysis for undefined variables (because tokens will come from the imports without needing any imports -- or you could disable code-analysis altogether). The auto-imports were not really done for that (you'd other problems if you put all your classes there, as Pydev expects those to be modules, so, you still have to import them -- the other choice would actually be doing the code-completion engine return your clasess when the builtins are requested, but that's not straightforward). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------------ _______________________________________________ Pydev-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pydev-users
