From 2091f33c821cadcc0848c6390d234f4243f54b47 Mon Sep 17 00:00:00 2001 From: mattn Date: Wed, 23 Feb 2011 15:44:33 +0900 Subject: [PATCH] django template --- autoload/zencoding.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/zencoding.vim b/autoload/zencoding.vim index d3a8823..44ddfd2 100644 --- a/autoload/zencoding.vim +++ b/autoload/zencoding.vim @@ -595,6 +595,8 @@ endfunction function! s:zen_getFileType() let type = &ft if type == 'xslt' | let type = 'xsl' | endif + if type == 'htmldjango' | let type = 'html' | endif + if type == 'html.django_template' | let type = 'html' | endif if synIDattr(synID(line("."), col("."), 1), "name") =~ '^css' let type = 'css' endif