From 33b6ba77326ad40edae91d0fdd89d40512440e8e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Mon, 13 Jan 2014 11:38:28 -0500 Subject: [PATCH] misc: updates the vim syntastic config with correct style MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- misc/vim/syntax_checkers/nit/nitc.vim | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/misc/vim/syntax_checkers/nit/nitc.vim b/misc/vim/syntax_checkers/nit/nitc.vim index 448c7ae..1637f46 100644 --- a/misc/vim/syntax_checkers/nit/nitc.vim +++ b/misc/vim/syntax_checkers/nit/nitc.vim @@ -57,8 +57,11 @@ function! SyntaxCheckers_nit_nitc_GetLocList() end " 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: ', '' ] + let ef_start = [ '%f:%l\,%c--%*[0-9]:', + \ '%f:%l\,%c--%*[0-9]\,%*[0-9]:', + \ '%f:%l\,%c:' ] + let ef_type = [ ' %tarning: ', + \ '' ] " generate errorformat from combinations let errorformat = "" -- 1.7.9.5