这是我的 .vimrc:
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'Valloric/YouCompleteMe'
Plugin 'jnurmine/Zenburn'
Plugin 'ldx/vim-indentfinder'
call vundle#end()
filetype plugin indent on
colors zenburn
set encoding=utf-8
set tabstop=4
set softtabstop=4
set shiftwidth=4
set smarttab
set number
let g:ycm_always_populate_location_list = 1
现在,我正在尝试在 C++ 项目中使用它。问题是编译错误没有在编辑器中突出显示。我知道我的.ycm_extra_conf.py
好和配置好,因为如果运行:
:YcmForceCompileAndDiagnostics
然后,在我知道是错误的一行中:
:YcmShowDetailedDiagnostic
我收到预期的错误消息:
/home/lvella/src/project/src/main.cpp:56:2: error: unknown type name 'safdsadfsadf'
但它没有突出显示。通过检查:YcmDiags
,我可以看到来自我正在使用的外部库内部的 30 条警告消息。现在我怀疑错误列表最多包含 30 个条目,而将我代码中的条目排除在外。我对吗?我可以过滤掉我当前正在查看的文件中不存在的所有条目吗?我可以增加列出的条目数量吗?如何查看我的错误?