From 512f7777293a896c397d2a3b353a78514be53f07 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sat, 11 Oct 2014 06:32:58 -0400 Subject: [PATCH] Added another string to the ignore list for syntastic --- vim/config/plugins.vim | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/vim/config/plugins.vim b/vim/config/plugins.vim index 8fb51ee..82d0a22 100644 --- a/vim/config/plugins.vim +++ b/vim/config/plugins.vim @@ -156,7 +156,13 @@ let g:syntastic_check_on_open=0 endif - let g:syntastic_quiet_messages={'regex':['package\ [^\ ]*\ does not exist.*', 'cannot find symbol.*', '.*method does not override or implement a method from a supertype.*']} + let g:syntastic_quiet_messages={ + \ 'regex':[ + \ 'package\ [^\ ]*\ does not exist.*', + \ 'cannot find symbol.*', + \ '.*method does not override or implement a method from a supertype.*', + \ '.*fatal error:[^:]*: No such file or directory.*' + \ ]} let g:syntastic_check_on_wq=0 let g:syntastic_always_populate_loc_list=1