I'm trying to configure Sumblime CodeIntel so that it works with django. The official docs state that:
For adding additional library paths (django for example), either add those paths as folders to your project, or create an optional codeintel configuration file in your home or in your project's root.
Configuration files (~/.codeintel/config or project_root/.codeintel/config). All configurations are optional.
I localized and edited the ~/.codeintel/config file, so that config now looks like this(added the bolded part):
{
"Python": {
**"python": "C:/Python27/django-tom/Lib/site-packages",**
"pythonExtraPaths": [
"libs",
"~/Applications/Sublime Text 2.app/Contents/MacOS",
"/Applications/Sublime Text 2.app/Contents/MacOS",
]
}
}
`django-tom is my virtualenv django folder. However the autocompletion is not working for django (but works fine with the rest of python).