From 6de870a10a09e511d18cb9255dd7102b3e959597 Mon Sep 17 00:00:00 2001 From: Grzegorz Adam Hankiewicz Date: Tue, 10 Dec 2013 11:09:14 +0100 Subject: [PATCH] Disables hints for check command. Paths for babel packages being reported by the compiler are considered errors and interfere with syntastic's :lnext and :lprevious support. --- autoload/nimrod.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/nimrod.vim b/autoload/nimrod.vim index cd71cfa..3742651 100644 --- a/autoload/nimrod.vim +++ b/autoload/nimrod.vim @@ -202,7 +202,7 @@ endf " Syntastic syntax checking fun! SyntaxCheckers_nimrod_nimrod_GetLocList() - let makeprg = 'nimrod check ' . s:CurrentNimrodFile() + let makeprg = 'nimrod check --hints:off ' . s:CurrentNimrodFile() let errorformat = &errorformat return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })