我刚刚安装了omnicppcomplete,它正在“kindof”工作。
这种行为真的很奇怪,Omnicppcomplete 适用于某些文件,但不适用于其他文件。
例如:如果我打开 file1.cpp,如果我 push ,omnicppcomplete 正在工作。但是,如果我打开 file2.cpp,omnicppcomplete 不再工作并且我得到错误: -- Omni complete (^O^N^P) Pattern not found。
这是我完整的.vimrc:
" -------------------------------- PLUGINS ----------------------------"
"############### ctags
" build tags of your own project
map <C-c> :!ctags -R --sort=yes --c++-kinds=+p --fields=+iaS --extra=+q .<CR>
"############### OmniCppComplete
au BufNewFile,BufRead,BufEnter *.cpp,*.hpp set omnifunc=omni#cpp#complete#Main
filetype on
" configure tags - add additional tags here or comment out not-used ones
set tags+=~/.vim/tags/cpp
set tags+=~/.vim/tags/cuda
let OmniCpp_NamespaceSearch = 1
let OmniCpp_GlobalScopeSearch = 1
let OmniCpp_ShowAccess = 1
let OmniCpp_ShowPrototypeInAbbr = 1 " show function parameters
let OmniCpp_MayCompleteDot = 1 " autocomplete after .
let OmniCpp_MayCompleteArrow = 1 " autocomplete after ->
let OmniCpp_MayCompleteScope = 1 " autocomplete after ::
let OmniCpp_DefaultNamespaces = ["std", "_GLIBCXX_STD"]
" automatically open and close the popup menu / preview window
au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif
set completeopt=menuone,menu,longest,preview
此外,我使用的是 MacVim 7.3。
任何帮助深表感谢。