From 33c991dac9122155c6ce1282a9e2e8bfccad14e4 Mon Sep 17 00:00:00 2001 From: Asa Ayers Date: Sun, 11 Aug 2013 14:35:23 -0400 Subject: [PATCH] Coffeelint: Added new formats for upcoming v0.5.7 release. fixes #762 --- syntax_checkers/coffee/coffeelint.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/syntax_checkers/coffee/coffeelint.vim b/syntax_checkers/coffee/coffeelint.vim index cae5c40c..c33afdc9 100644 --- a/syntax_checkers/coffee/coffeelint.vim +++ b/syntax_checkers/coffee/coffeelint.vim @@ -25,7 +25,9 @@ function! SyntaxCheckers_coffee_coffeelint_GetLocList() \ 'filetype': 'coffee', \ 'subchecker': 'coffeelint' }) - let errorformat = '%f\,%l\,%trror\,%m' + let errorformat = '%f\,%l\,\,%trror\,%m,' . + \ '%f\,%l\,%\\d%\\+\,%trror\,%m,' . + \ '%f\,%l\,%trror\,%m' return SyntasticMake({ \ 'makeprg': makeprg,