From d720977b7e7252b83c6c75c40266edb32f0e6079 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 27 Jan 2014 16:08:09 +0100 Subject: [PATCH] doc: fix example for g:syntastic__checkers Given checkers, the var should be syntastic_php_checkers. --- doc/syntastic.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syntastic.txt b/doc/syntastic.txt index 4fe04b0e..6bba1b71 100644 --- a/doc/syntastic.txt +++ b/doc/syntastic.txt @@ -498,7 +498,7 @@ addition to being added to Vim's |message-history|: > *'g:syntastic__checkers'* You can tell syntastic which checkers to run for a given filetype by setting a variable 'g:syntastic__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'.