syntastic/syntax_checkers/cpp.vim

29 lines
1.1 KiB
VimL
Raw Normal View History

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.
"
"============================================================================
2013-01-22 23:29:47 -05:00
if !exists('g:syntastic_cpp_checker')
if exists('g:loaded_youcompleteme')
2013-01-22 23:29:47 -05:00
let g:syntastic_cpp_checker = "ycm"
else
2013-01-22 23:29:47 -05:00
let g:syntastic_cpp_checker = "gcc"
endif
2013-01-22 23:29:47 -05:00
endif
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
endif
2013-01-22 23:29:47 -05:00
endif