I've been using Komodo Edit for a small project in Django.

The code completion features seem to work pretty well for standard python modules, however, it doesn't know anything about Django modules. Is there any way to configure Komodo Edit to use Django modules for autocomplete as well?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

By sure Django is on your python path and Komodo should pick it up. Alternatively you can add the location of Django to where Komodo looks for its autocomplete.

link|improve this answer
It was already on my python path (could import django stuff via plain old python shell), however,komodo didn't know about it. Manually adding the dist-packages folder fixes it though. – TM. Sep 15 '09 at 4:12
@TM - are you sure you have added the same Python (which python in shell) in Komodo's preferences as well? Komodo internally uses that Python's sys.path (which would obviously include dist-packages) as well. – Sridhar Ratnakumar Mar 24 '11 at 18:27
feedback

o to Edit > Preferences. Expand the "Languages" group by clicking the [+] symbol. Click "Python". Click the little "Add..." button under "Additional Python Import Directories". Add the directory ABOVE your project and you should have intellisense enabled.

This has always worked for me for both Django and my individual projects.

link|improve this answer
This allows me to see code completion for my own project files, but still no dice for django stuff. – TM. Sep 15 '09 at 4:08
1  
Ya, you have to do it for Django as well as your project, but it looks like you got it figured out. – Joel Hooks Sep 15 '09 at 5:14
feedback

Hmmm. It's installed by default so my answer probably isn't the right solution. :-)

But here goes...

You can install a Django extension in Komodo edit. I haven't tested it myself but you can test it.

Tools -> Add-ons -> Extensions

It's name is "Django Language".

Check if it works.

link|improve this answer
1  
This is for the Django Template Language – TM. Sep 15 '09 at 3:54
feedback

Your Answer

 
or
required, but never shown

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