annotate runtime/ftplugin/htmldjango.vim @ 10070:09c7df6f8dd3
v7.4.2306
commit https://github.com/vim/vim/commit/da9ce2cde11ddd0e16cdfbab6d4ac4e8110218e1
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 2 19:34:10 2016 +0200
patch 7.4.2306
Problem: Default value for 'langremap' is wrong.
Solution: Set the right value. (J?rgen Kr?mer) Add a test.
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 02 Sep 2016 19:45:08 +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
|