syntastic/syntax_checkers/c.vim

89 lines
3.2 KiB
VimL
Raw Normal View History

"============================================================================
"File: c.vim
"Description: Syntax checking plugin for syntastic.vim
"Maintainer: Gregor Uhlenheuer <kongo2002 at gmail dot com>
"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.
"
"============================================================================
2010-07-01 15:13:45 -04:00
" In order to also check header files add this to your .vimrc:
" (this usually creates a .gch file in your source directory)
"
" let g:syntastic_c_check_header = 1
"
2010-07-01 15:13:45 -04:00
" To disable the search of included header files after special
" libraries like gtk and glib add this line to your .vimrc:
"
" let g:syntastic_c_no_include_search = 1
"
2010-07-01 15:13:45 -04:00
" To enable header files being re-checked on every file write add the
" following line to your .vimrc. Otherwise the header files are checked only
" one time on initially loading the file.
" In order to force syntastic to refresh the header includes simply
" unlet b:syntastic_c_includes. Then the header files are being re-checked on
" the next file write.
"
2010-07-01 15:21:29 -04:00
" let g:syntastic_c_auto_refresh_includes = 1
"
2010-07-01 15:13:45 -04:00
" Alternatively you can set the buffer local variable b:syntastic_c_cflags.
" If this variable is set for the current buffer no search for additional
" libraries is done. I.e. set the variable like this:
"
" let b:syntastic_c_cflags = ' -I/usr/include/libsoup-2.4'
2009-12-20 14:08:31 -05:00
if exists('loaded_c_syntax_checker')
finish
endif
let loaded_c_syntax_checker = 1
2009-12-20 14:08:31 -05:00
if !executable('gcc')
finish
endif
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_c_GetLocList()
let makeprg = 'gcc -fsyntax-only '.shellescape(expand('%')).' -I. -I..'
2010-09-24 12:48:17 -04:00
let errorformat = '%-G%f:%s:,%-G%f:%l: %#error: %#(Each undeclared '.
\ 'identifier is reported only%.%#,%-G%f:%l: %#error: %#for '.
\ 'each function it appears%.%#,%-GIn file included%.%#,'.
\ '%-G %#from %f:%l\,,%f:%l:%c: %m,%f:%l: %trror: %m,%f:%l: %m'
2009-12-20 14:08:31 -05:00
if expand('%') =~? '.h$'
if exists('g:syntastic_c_check_header')
let makeprg = 'gcc -c '.shellescape(expand('%')).' -I. -I..'
else
return []
endif
endif
if !exists('b:syntastic_c_cflags')
if !exists('g:syntastic_c_no_include_search') ||
\ g:syntastic_c_no_include_search != 1
2010-07-01 15:21:29 -04:00
if exists('g:syntastic_c_auto_refresh_includes') &&
\ g:syntastic_c_auto_refresh_includes != 0
let makeprg .= syntastic#SearchHeaders()
else
2010-07-01 15:13:45 -04:00
if !exists('b:syntastic_c_includes')
let b:syntastic_c_includes = syntastic#SearchHeaders()
endif
2010-07-01 15:13:45 -04:00
let makeprg .= b:syntastic_c_includes
endif
endif
else
let makeprg .= b:syntastic_c_cflags
endif
2010-02-08 10:44:31 -05:00
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
endfunction
2010-02-08 10:44:31 -05:00
let &cpo = s:save_cpo
unlet s:save_cpo
2011-09-09 15:36:36 -04:00
" vim: set et sts=4 sw=4: