blob: 8340b9c7de98b64c4b2c2ac6efe2e9758cc564b3 [file] [log] [blame]
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001if exists("current_compiler")
2 finish
3endif
4let current_compiler = "sass"
5
6if exists(":CompilerSet") != 2 " older Vim always used :setlocal
7 command -nargs=* CompilerSet setlocal <args>
8endif
9
10let s:cpo_save = &cpo
11set cpo-=C
12
13CompilerSet makeprg=sass\ -c
14
15CompilerSet errorformat=
16 \%f:%l:%m\ (Sass::Syntax%trror),
17 \%ESyntax\ %trror:%m,
18 \%C%\\s%\\+on\ line\ %l\ of\ %f,
19 \%Z%.%#,
20 \%-G%.%#
21
22let &cpo = s:cpo_save
23unlet s:cpo_save
24
25" vim:set sw=2 sts=2: