From c5db7c80d287b41db13766f16b25affe4c44de44 Mon Sep 17 00:00:00 2001 From: Hugues Lismonde Date: Wed, 10 Aug 2011 13:38:52 +0200 Subject: [PATCH] SASS support --- autoload/zencoding.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/zencoding.vim b/autoload/zencoding.vim index ef6b130..e285fb4 100644 --- a/autoload/zencoding.vim +++ b/autoload/zencoding.vim @@ -597,6 +597,7 @@ function! s:zen_getFileType() if type == 'xslt' | let type = 'xsl' | endif if type == 'htmldjango' | let type = 'html' | endif if type == 'html.django_template' | let type = 'html' | endif + if type == 'scss' | let type = 'css' | endif if synIDattr(synID(line("."), col("."), 1), "name") =~ '^css' let type = 'css' endif