annotate runtime/ftplugin/htmldjango.vim @ 15298:4aea6c2f56a8
v8.1.0657
patch 8.1.0657: get error for using regexp recursively
commit https://github.com/vim/vim/commit/01e51e5b305c13c68b5ea2b9e14779e1e88664ef
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Dec 29 13:09:46 2018 +0100
patch 8.1.0657: get error for using regexp recursively
Problem: Get error for using regexp recursively. (Dominique Pelle)
Solution: Do no check if connection is desired.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 29 Dec 2018 13:15: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
|