diff options
-rw-r--r-- | .vim/addons-settings.vim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.vim/addons-settings.vim b/.vim/addons-settings.vim index 28e8290..d83bed9 100644 --- a/.vim/addons-settings.vim +++ b/.vim/addons-settings.vim @@ -139,8 +139,11 @@ let g:syntastic_enable_signs=1 let g:syntastic_auto_jump=0 "show the error list automatically let g:syntastic_auto_loc_list=1 -"don't care about warnings -let g:syntastic_quiet_messages = {'level': 'warnings'} +"disable warnings and false positive errors via regex +let g:syntastic_quiet_messages = { "regex": [ + \ '\mwhitespace before footnote', + \ '\mpossible unwanted space at "{"', + \ ],'level': 'warnings'} " ================ tComment settings ================ " tComment maps 'gcc' to comment current line |