#Vim htmldjango autocomplete [![Join the chat at https://gitter.im/mjbrownie/vim-htmldjango_omnicomplete](https://badges.gitter.im/Join%20Chat.svg)](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: ![](https://raw.githubusercontent.com/mjbrownie/media/master/django_completeme.gif) ( 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" %}