From 6e9529be4e0c2b0b42e5eb51fad1c34bae6f56fc Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 2 Feb 2017 23:23:52 +0100 Subject: Change scss provider to cakebaker, closes #173 --- compiler/sass.vim | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 compiler/sass.vim (limited to 'compiler') 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 -" 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 -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 -- cgit v1.2.3