Ive been using komodo edit recently to go through a few django tutorials, and ive been impressed with the level of code completion it provides for the framework.

However what i really want it to do is provide code completion for the current project, so in effect my own views, models etc. would work in the same way as the framework itself.

Is there a way to temporarily modify the python path on a per project basis to get code completion of my current project?

NB: Im not sure whether this is a Stack Overflow or a Super User question, feel free to correct me.

link|improve this question

70% accept rate
I get code completion with my current project now, so could you explain what is happening? One thing that might help is sticking an empty "init.py" file into your package dirs. – Ryan Ginstrom Nov 26 '10 at 12:02
I get code completion for the standard django library (so i can write django.whatever and get associated classes). However i cant seem to get my own project to do the same, so i cant do myproject.views/models/urls/forms/whatever it doesnt seem to recognise them. – richzilla Nov 26 '10 at 12:12
Posting in the Komodo support forum may get more attention, community.activestate.com/forums/komodo – Sridhar Ratnakumar Nov 27 '10 at 4:18
feedback

1 Answer

up vote 3 down vote accepted

You can set per-project Python paths in Project [Menu] -> Properties -> Languages -> Python -> Additional Python Import Directories. See the official documentation for more details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.