syntastic的安装步骤很简单,网上也很多,这里不再赘述;
如果使用c++11及以上的语法标准,如auto等,syntastic会非常友好的给出一个提醒,这个提醒和编译时,没有指定-std=c++11的提醒一样,这个时候需要指定syntastic编译时,指定的编译选项, 可通过修改.vimrc完成,也可修改syntastic的对C++的语法检查的配置完成,其配置文件的目录为~/.vim//bundle/syntastic/syntax_checkers/cpp/gcc.vim,修改的内容为:
if !exists('g:syntastic_cpp_compiler_options') let g:syntastic_cpp_compiler_options = ' -std=c++11 -lstdc++ ' endif
其他类型的源代码增加编译选项类似
vim之syntastic插件使用和配置
点赞
收藏