#Vim htmldjango autocomplete
[](https://gitter.im/mjbrownie/vim-htmldjango_omnicomplete?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
An omnicomplete tailored to django templates "tags/variables/filters/templates"
Repo: git://github.com/mjbrownie/vim-htmldjango_omnicomplete.git
##Screenshots:

( Note the screenshot is from the youcompleteme rewrite found here https://github.com/mjbrownie/django_completeme).
This plugin is standalone and functionally identical except for the fuzzy ycm completion options. See notes at the bottom.
##Eg.
1. Filters
{{ somevar|a}} should complete 'add' , 'addslashes'
2. Tags
{% cy %} should complete 'cycle'
3. Load statements
It also should grab any libs you have {% load tag_lib %} in the file.
Although it needs them in INSTALLED_APPS.
{% load %} will complete libraries (eg. 'cache', 'humanize')
4. template filenames
{% extends '' %} will list base.html ... etc
5. url complete
{% url %} should complete views and named urls
6. super block complete
eg {% block c %} to complete 'content' or something defined
in an extended template.
7. static files complete
eg {% static "r" %}