我最近根据本指南https://github.com/scrooloose/syntastic#installpathogen通过病原体安装了Syntastic。
然而,Syntastic不适用于c ++。然而它确实适用于c。 我不确定是什么原因,当我打开.cpp文件并故意创建错误时,没有任何报告。
这是我的vimrc:
:syntax on
:set number
:set autoindent
:set cindent
set t_Co=256 "sets vim to 256 color
if &term =~ '256color'
" disable Background Color Erase (BCE) so that color schemes
" render properly when inside 256-color tmux and GNU screen.
set t_ut=
endif
"Synastic
let g:syntastic_cpp_compiler = 'clang++'
let g:syntastic_cpp_compiler_options = ' -std=c++11 -stdlib=libc++'
let g:syntastic_cpp_check_header = 1
nmap <F8> :TagbarToggle<CR> "maps f8 to tagbar toggle
execute pathogen#infect()
:colorscheme mustang
答案 0 :(得分:6)
这也可能在其他地方得到了回答。您是否尝试调试Syntastic?
尝试将let g:syntastic_debug=1
设置为.vimrc。,运行检查程序,并检查:mes
的输出以调试任何问题
或者,您可以键入:SyntasticInfo
,它将输出如下内容:
Syntastic version: 3.4.0-134
Info for filetype: cpp
Mode: active
Filetype cpp is active
Available checkers: clang_check clang_tidy gcc
Currently enabled checkers: -
您可以通过将它们添加到.vimrc:let g:syntastic_cpp_checkers = ['clang_check', 'gcc']
来启用所需的正确检查器,或者您可以指定自己的规则。为此,您可以通过键入:h syntastic
来查看手册。