2013-01-22 23:29:47 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: cpp.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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-03-20 05:31:45 -04:00
|
|
|
if exists('g:loaded_syntastic_cpp_gcc_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
finish
|
|
|
|
endif
|
2013-03-20 05:31:45 -04:00
|
|
|
let g:loaded_syntastic_cpp_gcc_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-01-22 23:29:47 -05:00
|
|
|
if !exists('g:syntastic_cpp_compiler')
|
|
|
|
let g:syntastic_cpp_compiler = 'g++'
|
|
|
|
endif
|
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_cpp_gcc_IsAvailable() dict
|
|
|
|
return executable(expand(g:syntastic_cpp_compiler))
|
2013-03-20 05:31:45 -04:00
|
|
|
endfunction
|
2013-01-22 23:29:47 -05:00
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-03-20 05:31:45 -04:00
|
|
|
if !exists('g:syntastic_cpp_compiler_options')
|
|
|
|
let g:syntastic_cpp_compiler_options = ''
|
|
|
|
endif
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_cpp_gcc_GetLocList() dict
|
2013-06-25 02:59:07 -04:00
|
|
|
return syntastic#c#GetLocList('cpp', 'gcc', {
|
2013-05-21 03:03:04 -04:00
|
|
|
\ 'errorformat':
|
|
|
|
\ '%-G%f:%s:,' .
|
|
|
|
\ '%f:%l:%c: %trror: %m,' .
|
|
|
|
\ '%f:%l:%c: %tarning: %m,' .
|
|
|
|
\ '%f:%l:%c: %m,'.
|
|
|
|
\ '%f:%l: %trror: %m,'.
|
|
|
|
\ '%f:%l: %tarning: %m,'.
|
|
|
|
\ '%f:%l: %m',
|
2013-06-24 04:46:27 -04:00
|
|
|
\ 'main_flags': '-x c++ -fsyntax-only',
|
|
|
|
\ 'header_flags': '-x c++',
|
2013-10-25 08:56:09 -04:00
|
|
|
\ 'header_names': '\m\.\(h\|hpp\|hh\)$' })
|
2013-01-22 23:29:47 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'cpp',
|
2013-01-31 05:26:55 -05:00
|
|
|
\ 'name': 'gcc'})
|
2013-01-27 15:08:30 -05:00
|
|
|
|
2013-01-22 23:29:47 -05:00
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|