如何通过名称导航到 emacs 中的 erlang 函数?

发布于 2024-08-08 18:19:47 字数 105 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

南城旧梦 2024-08-15 18:19:47

您可以直接使用 Mx imenu — 但它仅在当前文件中有效。我将其绑定到 .emacs 中的 Super-i

(global-set-key [(super ?i)] 'imenu)

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:

(global-set-key [(super ?i)] 'imenu)
云醉月微眠 2024-08-15 18:19:47

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

想你只要分分秒秒 2024-08-15 18:19:47

Erlang 是标签支持的众多语言之一。 Erlang 文档 显示您刚刚构建标签文件:

find . -name "*.[he]rl" -print | etags -

一旦您有了 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:

find . -name "*.[he]rl" -print | etags -

Once you have a TAGS file, you just use M-., which calls 'find-tag. This enables jumping to a function name from anywhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文