All Projects → lambdalisue → vim-django-support

lambdalisue / vim-django-support

Licence: other
Add DJANGO_SETTINGS_MODULE to enable pythoncomplete or whatever for django in vim

Programming Languages

Vim Script
2826 projects
python
139335 projects - #7 most used programming language

vim-django-support

As many of you know, django use an environment variable call DJANGO_SETTINGS_MODULE to determine the settings like which database system should django use.

While django use the environment variable in module definition level, some of django modules could not be loaded without the correct value. This is quite annoying and Vim omnicompletion system like pythoncomplete could not parse the djanog module, and thus often the omni completion of django is not available in Vim.

vim-django-support automatically find the settings module from the current working directory and apply that to DJANGO_SETTINGS_MODULE. This makes Vim internal python allows to load django modules, and allows to do omni completions.

Install

I recommend you to use some package manager such as neobundle.vim or Vundle.vim. The following is an example in neobundle.vim

NeoBundle 'lambdalisue/vim-django-support'

Requirements

vim-django-support use pure vim script to find the settings module thus what you need to do is just install it. It has no dependencies.

Usage

With default settings, vim-django-support try to find the settings module in a directory tree from the current directory (the current directory and its sub directories) everytime you open a file which file type is 'python' or 'htmldjango'. If you prefer to use a different directory rather than the current directory, you can specify the directory with g:django_support#project_root or b:django_support#project_root. If you don't want vim-django-support to find the settings module everytime when you open the pytyon file, specify 0 to g:django_support#auto_activate_on_filetype, and if you don't want vim-django-support to activate in vim starting, specify 0 to g:django_support#auto_activate.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].