Merge pull request #966 from blueyed/docfix-syntastic_php_checkers

Doc: fix example for g:syntastic_<filetype>_checkers.
This commit is contained in:
LCD 047 2014-01-27 07:49:33 -08:00
commit 8e0f22ea41

View File

@ -498,7 +498,7 @@ addition to being added to Vim's |message-history|: >
*'g:syntastic_<filetype>_checkers'*
You can tell syntastic which checkers to run for a given filetype by setting a
variable 'g:syntastic_<filetype>_checkers' to a list of checkers, e.g. >
let g:syntastic_python_checkers = ['php', 'phpcs', 'phpmd']
let g:syntastic_php_checkers = ['php', 'phpcs', 'phpmd']
<
*'b:syntastic_checkers'*
There is also a per-buffer version of this setting, 'b:syntastic_checkers'.