1" Vim compiler file 2" Compiler: csslint for CSS 3" Maintainer: Daniel Moch <[email protected]> 4" Last Change: 2016 May 21 5 6if exists("current_compiler") 7 finish 8endif 9let current_compiler = "csslint" 10 11if exists(":CompilerSet") != 2 " older Vim always used :setlocal 12 command -nargs=* CompilerSet setlocal <args> 13endif 14 15CompilerSet makeprg=csslint\ --format=compact 16CompilerSet errorformat=%-G,%-G%f:\ lint\ free!,%f:\ line\ %l\\,\ col\ %c\\,\ %trror\ -\ %m,%f:\ line\ %l\\,\ col\ %c\\,\ %tarning\ -\ %m,%f:\ line\ %l\\,\ col\ %c\\,\ %m 17