2009-12-21 01:26:58 +08:00
|
|
|
"============================================================================
|
|
|
|
"File: c.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
2012-04-08 15:54:13 -07:00
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
|
2009-12-21 01:26:58 +08:00
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2012-04-08 15:54:13 -07:00
|
|
|
if exists("loaded_c_syntax_checker")
|
2009-12-21 01:26:58 +08:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let loaded_c_syntax_checker = 1
|
|
|
|
|
2012-04-08 15:54:13 -07:00
|
|
|
if !exists('g:syntastic_c_checker')
|
|
|
|
let g:syntastic_c_checker = "gcc"
|
2009-12-21 01:26:58 +08:00
|
|
|
endif
|
|
|
|
|
2012-04-08 15:54:13 -07:00
|
|
|
if g:syntastic_c_checker == "gcc"
|
|
|
|
if executable("gcc")
|
|
|
|
runtime! syntax_checkers/c/gcc.vim
|
2009-12-21 02:19:53 +08:00
|
|
|
endif
|
2012-04-08 15:54:13 -07:00
|
|
|
elseif g:syntastic_c_checker == "checkpatch"
|
|
|
|
if executable("checkpatch.pl") || executable("./scripts/checkpatch.pl")
|
|
|
|
runtime! syntax_checkers/c/checkpatch.vim
|
2010-03-26 08:09:10 +08:00
|
|
|
endif
|
2012-04-08 15:54:13 -07:00
|
|
|
elseif g:syntastic_c_checker == "checkpatch-kernel-only"
|
|
|
|
if executable("./scripts/checkpatch.pl")
|
|
|
|
runtime! syntax_checkers/c/checkpatch.vim
|
|
|
|
elseif executable("gcc")
|
|
|
|
runtime! syntax_checkers/c/gcc.vim
|
2011-12-18 18:59:24 +01:00
|
|
|
endif
|
2012-04-08 15:54:13 -07:00
|
|
|
endif
|