annotate runtime/ftplugin/htmldjango.vim @ 18554:60c46cd053db
v8.1.2271
patch 8.1.2271: build error if FEAT_TAG_BINS is not defined
Commit: https://github.com/vim/vim/commit/398a59b6a51e86c23a5f61cb9a6d8a5771c95680
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Nov 8 21:56:57 2019 +0100
patch 8.1.2271: build error if FEAT_TAG_BINS is not defined
Problem: Build error if FEAT_TAG_BINS is not defined. (John Marriott)
Solution: Add #ifdef.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 08 Nov 2019 22:00:05 +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
|