diff options
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/sass.vim | 34 | 
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 | 
