annotate runtime/ftplugin/htmldjango.vim @ 12567:0676034468be
Added tag v8.0.1161 for changeset 33a900199c25faa46b2d3e380fd4c6c03b1409b2
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 29 Sep 2017 22:45:04 +0200 |
parents |
96cd8222a819 |
children |
|
rev |
line source |
1125
|
1 " Vim filetype plugin file
|
|
2 " Language: Django HTML template
|
|
3 " Maintainer: Dave Hodder <dmh@dmh.org.uk>
|
|
4 " Last Change: 2007 Jan 25
|
|
5
|
|
6 " Only use this filetype plugin when no other was loaded.
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10
|
|
11 " Use HTML and Django template ftplugins.
|
|
12 runtime! ftplugin/html.vim
|
|
13 runtime! ftplugin/django.vim
|