sass.vim 538 B

12345678910111213141516171819202122232425262728
  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. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "sass"
  10. let s:cpo_save = &cpo
  11. set cpo-=C
  12. CompilerSet makeprg=sass
  13. CompilerSet errorformat=
  14. \%f:%l:%m\ (Sass::Syntax%trror),
  15. \%ESyntax\ %trror:%m,
  16. \%C%\\s%\\+on\ line\ %l\ of\ %f,
  17. \%Z%.%#,
  18. \%-G%.%#
  19. let &cpo = s:cpo_save
  20. unlet s:cpo_save
  21. " vim:set sw=2 sts=2: