使 emacs 语义自动完成提示“始终开启”
我刚刚安装了 cedet(CVS 版本),现在正在 emacs 和我的 C++ 源代码中使用。
关于自动完成,我可以从它们的semantic-ia-complete-*命令中调用工具提示和菜单。
有谁知道如何让自动完成提示自动出现而无需调用命令(semantic-ia-complete-tip)
?这可能吗?
I have just installed cedet (CVS version) and I am now playing with in emacs and my C++ source code.
Regarding the auto complete, I can invoke the tool tip and the menu from their semantic-ia-complete-* commands.
Does anyone know how I can make the auto complete tip appear automatically without my having to invoke a command (semantic-ia-complete-tip)
? Is this even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 CEDET 网站:
实际上,这意味着只要您停止键入并且光标位于可以完成的符号下方,就会出现可能的完成。
要使用它,只需
在加载 CEDET 后将其放入 .emacs 中即可。
From CEDET website:
In practice this means that the possible completions will appear whenever you stop typing and the cursor is under a symbol where completions are possible.
To use it, just put
to your .emacs after loading the CEDET.