"============================================================================ "File: python.vim "Description: Syntax checking plugin for syntastic.vim " "Authors: Martin Grenfell " kstep " Parantapa Bhattacharya " " " For forcing the use of flake8, pyflakes, or pylint set " " let g:syntastic_python_checker = 'pyflakes' " " in your .vimrc. Default is flake8. "============================================================================ if !exists('g:syntastic_python_checker_args') let g:syntastic_python_checker_args = '' endif call SyntasticLoadChecker('python')