Search code examples
vimmacvimsyntastic

How to display only errors in the location list?


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?


Solution

  • Use let g:syntastic_quiet_messages = { "level" : "warnings" }.

    Read :h syntastic_quiet_messages for more info.