From 7e41fd12ce3a18d4407ed3e0b843e54674872a56 Mon Sep 17 00:00:00 2001 From: David Barnett Date: Sun, 3 Mar 2013 17:58:27 -0800 Subject: [PATCH] Update help file for b:syntastic_checkers --- doc/syntastic.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/syntastic.txt b/doc/syntastic.txt index efa8355c..73861564 100644 --- a/doc/syntastic.txt +++ b/doc/syntastic.txt @@ -299,6 +299,12 @@ e.g. > let g:syntastic_python_checkers = ['flake8'] < +There's also a per-buffer version of this setting, b:syntastic_checkers. Use +this in an autocmd to configure specific checkers for particular paths: > + autocmd FileType python if stridx(expand('%:p'), '/some/path/') == 0 | + \ let b:syntastic_checkers = ['pylint'] | endif +< + To see the list of available checkers for your filetype, look in `syntax_checkers//`. The names of the files here correspond to '' above.