You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additional syntax checkers for the Vim plugin Syntastic.
Checkers
C:
" Like Syntastic's normal checker, but only checks files if there is a" `.syntastic_c_config` file existing in the directory or an ancestor" directory. It ignores warnings in included files by using `-isystem`" instead of `-I`. It also supports `compile_commands.json` files generated" by CMake. `compile_commands.json` is used if the Syntastic configuration" file is not found. `compile_commands.json` is found using an ancestor" search for `build/compile_commands.json`.letg:syntastic_c_checkers= ['check']
C++:
" See above, but replace '.syntastic_c_config' with" `.syntastic_cpp_config`.letg:syntastic_cpp_checkers= ['check']
" Like Syntastic's pyflakes checker, but treats messages about unused" variables/imports as warnings rather than errors.letg:syntastic_python_checkers= ['pyflakes_with_warnings']
YAML:
letg:syntastic_yaml_checkers= ['pyyaml']
Hooks
Block ZZ if there are syntax errors:
nnoremapZZ:call syntastic_extras#quit_hook()<cr>
About
Additional Syntastic syntax checkers and features (for Vim)