Reputation: 376
In vim, Syntastic always shows the warnings with the errors. However, I don't want the warnings to be displayed. Is there a config to do this?
Upvotes: 1
Views: 422
Reputation: 24802
Use let g:syntastic_quiet_messages = { "level" : "warnings" }
.
Read :h syntastic_quiet_messages
for more info.
Upvotes: 2