summaryrefslogtreecommitdiffstats
path: root/compiler
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-02-02 23:23:52 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2017-02-02 23:23:52 +0100
commit6e9529be4e0c2b0b42e5eb51fad1c34bae6f56fc (patch)
tree4bdaa1decc2241814e5de4de04d3ee39df4b3684 /compiler
parent462bb76e06c9efa66cc4bae098dcc5497dd1069d (diff)
downloadvim-polyglot-6e9529be4e0c2b0b42e5eb51fad1c34bae6f56fc.tar.gz
vim-polyglot-6e9529be4e0c2b0b42e5eb51fad1c34bae6f56fc.zip
Change scss provider to cakebaker, closes #173v2.14.0
Diffstat (limited to 'compiler')
-rw-r--r--compiler/sass.vim34
1 files changed, 0 insertions, 34 deletions
diff --git a/compiler/sass.vim b/compiler/sass.vim
deleted file mode 100644
index 85994ce1..00000000
--- a/compiler/sass.vim
+++ /dev/null
@@ -1,34 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haml') == -1
-
-" Vim compiler file
-" Compiler: Sass
-" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2013 May 30
-
-if exists("current_compiler")
- finish
-endif
-let current_compiler = "sass"
-
-if exists(":CompilerSet") != 2 " older Vim always used :setlocal
- command -nargs=* CompilerSet setlocal <args>
-endif
-
-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
-
-" vim:set sw=2 sts=2:
-
-endif