K.H.A.
K.H.A.

Reputation: 376

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?

Upvotes: 1

Views: 422

Answers (1)

Marth
Marth

Reputation: 24802

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

Read :h syntastic_quiet_messages for more info.

Upvotes: 2

Related Questions