如何在Emacs中显示函数原型?
在 C 模式下,我可以使用 M- 跳转到某个函数。 关于函数名称......有没有一种方法可以简单地显示函数原型? (最好是作为工具提示等)我经常很难记住给定函数所需的确切顺序和类型。
While in C-mode I can jump to a function using M-. on the function name....is there a way i can simply display the function prototype? (preferably as a tooltip or so) I often struggle to remember the exact order and types required by a given function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
CEDET包提供了函数semantic-ia-show-summary,可以显示点下函数/变量的原型
CEDET package provide function semantic-ia-show-summary that can show prototype for function/variable under point
CEDET(有传言说它最终将从 23.2 开始成为 Emacs 的一部分)是你的朋友。 安装后,查找
semantic-ia-show-summary
。CEDET (there are rumors that it is finally going to become part of Emacs starting with 23.2) is your friend. After installation, look up
semantic-ia-show-summary
.c-eldoc-mode 是一种不像 CEDET 那样重量级的模式,它可以精确地完成您想要的操作。
c-eldoc-mode is a mode that is not as heavyweight as CEDET that will do precisely what you want.