如何通过名称导航到 emacs 中的 erlang 函数?
我使用 emacs 模式。如何按名称导航到函数定义? Emacs 有“imenu-add-to-menubar”命令,但这不是方便的方法,因为我必须从菜单中选择函数名称。
谢谢你!
I use emacs-mode. How can I navigate to function definition by name? Emacs has "imenu-add-to-menubar" command but it's not convenient way because I have to select function name from menu.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以直接使用 Mx imenu — 但它仅在当前文件中有效。我将其绑定到
.emacs
中的 Super-i:You could use M-x imenu directly—it works only within the current file, though. I bind it to Super-i in my
.emacs
with:Distel包有erl-find-source-under-point函数,即绑定到M-。钥匙
您可以在 我的文章中阅读有关在 Emacs 中使用 Erlang 的更多信息
Distel package has erl-find-source-under-point function, that is bound to M-. key
You can read more about work with Erlang from Emacs in my article
Erlang 是标签支持的众多语言之一。 Erlang 文档 显示您刚刚构建标签文件:
一旦您有了 TAGS 文件,您只需使用 M-.,它调用 '
find-tag
。这使得可以从任何地方跳转到函数名称。Erlang is one of the many languages supported by tags. The Erlang docs show that you just build the tags file with:
Once you have a TAGS file, you just use M-., which calls '
find-tag
. This enables jumping to a function name from anywhere.