neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

sass.vim (538B)


      1 " Vim compiler file
      2 " Compiler:	Sass
      3 " Maintainer:	Tim Pope <vimNOSPAM@tpope.org>
      4 " Last Change:	2016 Aug 29
      5 "		2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      6 
      7 if exists("current_compiler")
      8  finish
      9 endif
     10 let current_compiler = "sass"
     11 
     12 let s:cpo_save = &cpo
     13 set cpo-=C
     14 
     15 CompilerSet makeprg=sass
     16 
     17 CompilerSet 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 
     24 let &cpo = s:cpo_save
     25 unlet s:cpo_save
     26 
     27 " vim:set sw=2 sts=2: