2009-12-20 14:08:31 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: cpp.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
2013-01-22 23:29:47 -05:00
|
|
|
"Maintainer: Val Markovic <val at markovic dot io>
|
2009-12-20 14:08:31 -05: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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2009-12-21 06:50:47 -05:00
|
|
|
|
2013-01-22 23:29:47 -05:00
|
|
|
if !exists('g:syntastic_cpp_checker')
|
2012-07-30 00:13:09 -04:00
|
|
|
if exists('g:loaded_youcompleteme')
|
2013-01-22 23:29:47 -05:00
|
|
|
let g:syntastic_cpp_checker = "ycm"
|
2011-09-09 15:41:25 -04:00
|
|
|
else
|
2013-01-22 23:29:47 -05:00
|
|
|
let g:syntastic_cpp_checker = "gcc"
|
2011-09-09 15:41:25 -04:00
|
|
|
endif
|
2013-01-22 23:29:47 -05:00
|
|
|
endif
|
2011-09-09 15:41:25 -04:00
|
|
|
|
2013-01-22 23:29:47 -05:00
|
|
|
if g:syntastic_cpp_checker == "ycm"
|
|
|
|
runtime! syntax_checkers/cpp/ycm.vim
|
|
|
|
elseif g:syntastic_cpp_checker == "gcc" || g:syntastic_cpp_checker == "clang"
|
|
|
|
if executable(g:syntastic_cpp_checker)
|
|
|
|
runtime! syntax_checkers/cpp/gcc.vim
|
2012-03-04 15:08:04 -05:00
|
|
|
endif
|
2013-01-22 23:29:47 -05:00
|
|
|
endif
|
2011-09-09 15:41:25 -04:00
|
|
|
|