annotate runtime/ftplugin/htmldjango.vim @ 20739:a1b20eb19483
v8.2.0922
patch 8.2.0922: search test fails
Commit: https://github.com/vim/vim/commit/48af321a3382008dc642362d3f54bb6a61ff36e4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 7 17:20:02 2020 +0200
patch 8.2.0922: search test fails
Problem: Search test fails.
Solution: Remove failure tests for calls that no longer fail.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 07 Jun 2020 17:30:03 +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
|