From 2a798915875e0528d16260766ca7179906838660 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Tue, 29 May 2012 14:27:29 -0400 Subject: [PATCH] misc: handles all error types in syntastic Nit syntax checker MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- misc/syntastic/nit.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/syntastic/nit.vim b/misc/syntastic/nit.vim index 7da1985..a3fdf4b 100644 --- a/misc/syntastic/nit.vim +++ b/misc/syntastic/nit.vim @@ -55,7 +55,7 @@ function! SyntaxCheckers_nit_GetLocList() " possible combinations of error messages let ef_start = [ '%f:%l\,%c--%*[0-9]:', '%f:%l\,%c--%*[0-9]\,%*[0-9]:', '%f:%l\,%c:' ] - let ef_type = [ ' %tarning: ', ' %trror: ', ' Syntax %trror: ' ] + let ef_type = [ ' %tarning: ', '' ] " generate errorformat from combinations let errorformat = "" -- 1.7.9.5