diff --git a/syntax_checkers/css.vim b/syntax_checkers/css.vim index 46d3bfc8..76067133 100644 --- a/syntax_checkers/css.vim +++ b/syntax_checkers/css.vim @@ -22,7 +22,7 @@ function! SyntaxCheckers_css_GetLocList() let makeprg = 'csslint '.shellescape(expand('%')) " Print CSS Lint's 'Welcome' and error/warning messages. Ignores the code line. - let errorformat = '%+Gcsslint:\ There%.%#,%A%f:,%C%n:\ %t%\\w%\\+\ at\ line\ %l\,\ col\ %c,%Z%m\ at\ line%.%#,%A%>%f:,%C%n:\ %t%\\w%\\+\ at\ line\ %l\,\ col\ %c,%Z%m,%-G%.%#' + let errorformat = '%+Gcsslint:\ There%.%#,%A%f:,%C%n:\ %t%\\w%\\+\ at\ line\ %l\,\ col\ %c,%Z%m\ at\ line%.%#,%A%>%f:,%C%n:\ %t%\\w%\\+\ at\ line\ %l\,\ col\ %c,%Z%m,%-G%.%#' return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat }) endfunction