You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
412 B
VimL
14 lines
412 B
VimL
" Figure out which type of hilighting to use for html.
|
|
fun! s:SelectHTML()
|
|
let n = 1
|
|
while n < 50 && n <= line("$")
|
|
" check for jinja
|
|
if getline(n) =~ '{{.*}}\|{%-\?\s*\(end.*\|extends\|block\|macro\|set\|if\|for\|include\|trans\)\>'
|
|
set ft=jinja
|
|
return
|
|
endif
|
|
let n = n + 1
|
|
endwhile
|
|
endfun
|
|
autocmd BufNewFile,BufRead *.jinja2,*.j2,*.jinja,*.html,*.htm,*.nunjucks,*.nunjs call s:SelectHTML()
|