I am using SublimeRope plugin. When I am typing from foo.b
it displays the autocomplete dialog with random crap but what I am really looking for is to recognize bar
module inside the foo
package. However if I type from foo import b
it immediately suggest me to import bar
as a module. Which means Rope "knows" about that module. How can I configure my Sublime to help me suggest the imports when from foo.b
?
I am doing projects with django so the real example it wont me to autocomplete from django.contrib.
but if I type from django.contrib.auth.models import U
it suggest me to import user.