1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-16 06:47:52 +01:00
vim/runtime/syntax/htmldjango.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
1,011 B
VimL
Raw Permalink Normal View History

2006-03-23 22:59:57 +00:00
" Vim syntax file
" Language: Django HTML template
" Maintainer: Dave Hodder <dmh@dmh.org.uk>
" Last Change: 2014 Jul 13
2006-03-23 22:59:57 +00:00
" quit when a syntax file was already loaded
if exists("b:current_syntax")
2006-03-23 22:59:57 +00:00
finish
endif
if !exists("main_syntax")
let main_syntax = 'html'
endif
runtime! syntax/django.vim
runtime! syntax/html.vim
unlet b:current_syntax
2006-03-23 22:59:57 +00:00
2007-05-05 18:24:42 +00:00
syn cluster djangoBlocks add=djangoTagBlock,djangoVarBlock,djangoComment,djangoComBlock
syn region djangoTagBlock start="{%" end="%}" contains=djangoStatement,djangoFilter,djangoArgument,djangoTagError display containedin=ALLBUT,@djangoBlocks
syn region djangoVarBlock start="{{" end="}}" contains=djangoFilter,djangoArgument,djangoVarError display containedin=ALLBUT,@djangoBlocks
syn region djangoComment start="{%\s*comment\(\s\+.\{-}\)\?%}" end="{%\s*endcomment\s*%}" contains=djangoTodo containedin=ALLBUT,@djangoBlocks
2007-05-05 18:24:42 +00:00
syn region djangoComBlock start="{#" end="#}" contains=djangoTodo containedin=ALLBUT,@djangoBlocks
2006-03-23 22:59:57 +00:00
let b:current_syntax = "htmldjango"