mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 11:44:10 -05:00
make java errors about being unable to find external imports silent
This commit is contained in:
parent
ba8ab82b30
commit
a3971297aa
1 changed files with 4 additions and 2 deletions
|
@ -149,13 +149,15 @@
|
|||
let g:autostartchecker=0
|
||||
else
|
||||
if (g:autostartchecker == 1)
|
||||
let g:syntastic_mode_map = {'mode':'active','active_filetypes':[],'passive_filetypes':[]}
|
||||
let g:syntastic_mode_map={'mode':'active','active_filetypes':[],'passive_filetypes':[]}
|
||||
let g:syntastic_check_on_open=1
|
||||
else
|
||||
let g:syntastic_mode_map = {'mode':'passive','active_filetypes':[],'passive_filetypes':[]}
|
||||
let g:syntastic_mode_map={'mode':'passive','active_filetypes':[],'passive_filetypes':[]}
|
||||
let g:syntastic_check_on_open=0
|
||||
endif
|
||||
|
||||
let g:syntastic_quiet_messages={'regex':['package\ [^\ ]*\ does not exist.*', 'cannot find symbol.*']}
|
||||
|
||||
let g:syntastic_check_on_wq=0
|
||||
let g:syntastic_always_populate_loc_list=1
|
||||
let g:syntastic_auto_loc_list=1
|
||||
|
|
Loading…
Reference in a new issue