1234567891011121314151617181920212223 |
- if exists('g:loaded_syntastic_cpp_pc_lint_checker')
- finish
- endif
- let g:loaded_syntastic_cpp_pc_lint_checker = 1
- call g:SyntasticRegistry.CreateAndRegisterChecker({
- \ 'filetype': 'cpp',
- \ 'name': 'pc_lint',
- \ 'redirect': 'c/pc_lint'})
|