Add support for Sass 3.x and Compass imports

This commit is contained in:
Aman Gupta 2011-01-31 15:57:54 +08:00 committed by Martin Grenfell
parent d6a93dfd36
commit 7e9456ebb9

View File

@ -19,9 +19,16 @@ if !executable("sass")
finish
endif
"use compass imports if available
let g:syntastic_sass_imports = ""
if executable("compass")
let g:syntastic_sass_imports = system("compass imports")
endif
function! SyntaxCheckers_sass_GetLocList()
let makeprg='sass --check '.shellescape(expand('%'))
let errorformat = '%Wwarning on line %l:,%Z%m,Syntax %trror on line %l: %m'
let makeprg='sass '.g:syntastic_sass_imports.' --check '.shellescape(expand('%'))
let errorformat = '%ESyntax %trror:%m,%C on line %l of %f,%Z%m'
let errorformat .= ',%Wwarning on line %l:,%Z%m,Syntax %trror on line %l: %m'
let loclist = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
let bn = bufnr("")