summaryrefslogtreecommitdiff
path: root/mnv/runtime/compiler/sass.mnv
diff options
context:
space:
mode:
Diffstat (limited to 'mnv/runtime/compiler/sass.mnv')
-rw-r--r--mnv/runtime/compiler/sass.mnv27
1 files changed, 27 insertions, 0 deletions
diff --git a/mnv/runtime/compiler/sass.mnv b/mnv/runtime/compiler/sass.mnv
new file mode 100644
index 0000000000..6384f62cc7
--- /dev/null
+++ b/mnv/runtime/compiler/sass.mnv
@@ -0,0 +1,27 @@
+" MNV compiler file
+" Compiler: Sass
+" Maintainer: Tim Pope <mnvNOSPAM@tpope.org>
+" Last Change: 2016 Aug 29
+" 2024 Apr 03 by The MNV Project (removed :CompilerSet definition)
+
+if exists("current_compiler")
+ finish
+endif
+let current_compiler = "sass"
+
+let s:cpo_save = &cpo
+set cpo-=C
+
+CompilerSet makeprg=sass
+
+CompilerSet errorformat=
+ \%f:%l:%m\ (Sass::Syntax%trror),
+ \%ESyntax\ %trror:%m,
+ \%C%\\s%\\+on\ line\ %l\ of\ %f,
+ \%Z%.%#,
+ \%-G%.%#
+
+let &cpo = s:cpo_save
+unlet s:cpo_save
+
+" mnv:set sw=2 sts=2: