在使用 XCode 一段时间(几年)之后,我正试图转移到 MacVim 进行开发/代码编辑。大多数情况下,我这样做是因为我正在启动一些非 obj-c 项目,并且我不想在代码编辑器之间不断切换。
我用一些方便的插件设置了 MacVim:
- Janus(我知道,这是一个插件主机)
- 可可.vim
- clang_complete对我来说是最重要的,因为它模仿了 XCode 的代码完成。
到目前为止一切正常,除了我似乎无法将其配置为自动弹出完成框。每次我想查看代码完成时,我都必须使用“选项卡”。我宁愿在输入一定数量的单词字符后打开它,比如 3 个字符。我已经搜索了一段时间(几个小时),但无法让它工作。
任何帮助,将不胜感激。谢谢!
这是我的 .vimrc 文件:
""
"" Janus setup
""
" Define paths
let g:janus_path = escape(fnamemodify(resolve(expand("<sfile>:p")), ":h"), ' ')
let g:janus_vim_path = escape(fnamemodify(resolve(expand("<sfile>:p" . "vim")), ":h"), ' ')
let g:janus_custom_path = expand("~/.janus")
" Source janus's core
exe 'source ' . g:janus_vim_path . '/core/before/plugin/janus.vim'
" You should note that groups will be processed by Pathogen in reverse
" order they were added.
call janus#add_group("tools")
call janus#add_group("langs")
call janus#add_group("colors")
""
"" Customisations
""
if filereadable(expand("~/.vimrc.before"))
source ~/.vimrc.before
endif
" Disable plugins prior to loading pathogen
exe 'source ' . g:janus_vim_path . '/core/plugins.vim'
""
"" Pathogen setup
""
" Load all groups, custom dir, and janus core
call janus#load_pathogen()
colorscheme Wombat256
"clang_autocomplete options
set conceallevel=2
set concealcursor=vin
let g:clang_use_library=1
let g:clang_library_path='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib'
let g:clang_complete_auto=1
let g:clang_periodic_quickfix=1
let g:clang_snippets=1
let g:clang_conceal_snippets=1
let g:clang_snippets_engine='clang_complete'
" Show clang errors in the quickfix window
"let g:clang_complete_copen = 1
set completeopt=longest,menuone,preview