Vim omnicomplete按需打开文档

时间:2014-11-03 02:52:51

标签: vim omnicomplete

我使用Jedi-vim进行vim python自动完成,效果很好。它具有按需显示功能预览/文档的快捷方式。

我现在正在从事C ++项目,并且我尝试使用原始的omnicomplete + ctag来完成同样的事情。但我找不到类似于Jedi-vim的功能。

我不想一直显示预览窗口":设置completeopt + =预览",我不想使用像&#这样的巨大自动完成插件34; YouCompleteMe",我只想打开/跳转到按需预览。有没有办法实现它?提前谢谢!

1 个答案:

答案 0 :(得分:0)

我认为你会发现:help preview-window很有趣。

" shows the definition of foo in the preview window
:ptag foo

" shows the definition of the symbol under the cursor in the preview window
<C-w>}

但是,您需要使用ctags或某些兼容程序为您的项目编制索引以使该功能正常工作。

" doesn't need ctags
:psearch foo