Content Assist (Ctrl-1) in PydevExtensions is fab. But
with ALL import warnings (I mean warnings on "from x
import Y" and "import Z", it always suggested "move
import to global scope" even if the import is already
in global scope.
These could be more appropriate assists.
In particular, when the Warning is "unused import" it
suggests : move to global scope and mark as unused .
Mark as unused is good, but the other option is "remove
import".
Thanks
Tim
PS - and just FYI:
While I'm a big fan of organise imports in
eclipse-java, I am reluctant to use org-imports in
pydev... yet (but maybe also because the semantics of
import is SO different - it may actually be important*
which order imports occur in. But more likely I like to
have my imports in a particular order: standard
library, externals, this application, this package.
* ok this would be disastrous coding if true...