blob: d0ed65cfa559b12b2c41851da406ce407880f532 [file] [log] [blame]
Bram Moolenaar203d04d2013-06-06 21:36:40 +02001" Vim compiler file
2" Compiler: Sass
3" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
Bram Moolenaar89bcfda2016-08-30 23:26:57 +02004" Last Change: 2016 Aug 29
Doug Kearns408281e2024-04-04 22:00:58 +02005" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar203d04d2013-06-06 21:36:40 +02006
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02007if exists("current_compiler")
8 finish
9endif
10let current_compiler = "sass"
11
Bram Moolenaar543b7ef2013-06-01 14:50:56 +020012let s:cpo_save = &cpo
13set cpo-=C
14
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020015CompilerSet makeprg=sass
Bram Moolenaar543b7ef2013-06-01 14:50:56 +020016
17CompilerSet errorformat=
18 \%f:%l:%m\ (Sass::Syntax%trror),
19 \%ESyntax\ %trror:%m,
20 \%C%\\s%\\+on\ line\ %l\ of\ %f,
21 \%Z%.%#,
22 \%-G%.%#
23
24let &cpo = s:cpo_save
25unlet s:cpo_save
26
27" vim:set sw=2 sts=2: