annotate runtime/ftplugin/htmldjango.vim @ 19224:743c2d8e09bd
Added tag v8.2.0170 for changeset 173b99509038fa5cd6fec7739baa64a759d50a97
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 28 Jan 2020 23:15:04 +0100 |
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
|