Docs: clarification about running checkers when aggregating errors.

This commit is contained in:
LCD 47 2014-02-04 23:29:53 +02:00
parent 1bc5fee054
commit c72f58231a

View File

@ -174,19 +174,19 @@ Example: >
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
2.5. Aggregating errors *syntastic-aggregating-errors* 2.5. Aggregating errors *syntastic-aggregating-errors*
By default (namely if |'syntastic_aggregate_errors'| is unset), syntastic runs By default, namely if |'syntastic_aggregate_errors'| is unset, syntastic runs
in turn the checkers corresponding to the filetype of the current file, and in turn the checkers corresponding to the filetype of the current file (see
stops as soon as a checker reports any errors. It then notifies you of the |syntastic-filetype-checkers|), and stops as soon as a checker reports any
errors using the notification mechanisms above. In this mode error lists are errors. It then notifies you of the errors using the notification mechanisms
always produced by a single checker, and, if you open the error window, the above. In this mode error lists are always produced by a single checker, and,
name of the checker that generated the errors is shown on the statusline of the if you open the error window, the name of the checker that generated the errors
error window. is shown on the statusline of the error window.
If |'syntastic_aggregate_errors'| is set, syntastic runs all checkers that If |'syntastic_aggregate_errors'| is set, syntastic runs all checkers that
apply, then aggregates errors found by all checkers in a single list, and apply (still cf. |syntastic-filetype-checkers|), then aggregates errors found
notifies you. In this mode each error message is labeled with the name of by all checkers in a single list, and notifies you. In this mode each error
the checker that generated it, but you can disable these labels by unsetting message is labeled with the name of the checker that generated it, but you can
'|syntastic_id_checkers|'. disable these labels by unsetting '|syntastic_id_checkers|'.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
2.6 Filtering errors *syntastic-filtering-errors* 2.6 Filtering errors *syntastic-filtering-errors*