Komodo Edit - code completion for Django?

I used Komodo Edit for a small project in Django.

Code completion functions seem to work very well with standard python modules, however it doesn't know anything about Django modules. Is there a way to configure Komodo Edit to use Django modules for autocomplete?

+2


source to share


3 answers


Of course Django is in your python path and Komodo should pick it up. Alternatively, you can add the Django location to where Komodo is looking for its autocomplete.



+4


source


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



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

+8


source


Hmmm. It's installed by default, so my answer is probably not the correct solution. :-)

But here comes ...

You can install the Django extension in the Komodo editor. I haven't tested it myself, but you can check it out.

Tools -> Add-ons -> Extensions

This name is "The Django Language".

Check if it works.

+2


source







All Articles