diff options
Diffstat (limited to 'autoload/polyglot.vim')
-rw-r--r-- | autoload/polyglot.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/polyglot.vim b/autoload/polyglot.vim index d8ee601f..97a83752 100644 --- a/autoload/polyglot.vim +++ b/autoload/polyglot.vim @@ -373,7 +373,7 @@ func! polyglot#DetectHtmlFiletype() for lnum in range(1, min([line("$"), 50])) let line = getline(lnum) if line =~# '{{.*}}\|{%-\=\s*\(end.*\|extends\|block\|macro\|set\|if\|for\|include\|trans\)\(\<\|\>\)\|{#\s\+' - set ft=jinja.html | return + set ft=htmldjango | return endif if line =~# '\(\<\|\>\)DTD\s\+XHTML\s' set ft=xhtml | return |