如何使用 Etags 在 Emacs 中找到类、方法、变量的引用?
我想在 Emacs 中找到对类、方法、变量的所有引用,就像我在 Eclipse 中使用 Ctrl+Shift+G (或 Cmd +Shift+G(Mac 上))一旦我设置了项目的 ETag。
我可以很好地浏览代码,但是找到对事物的引用是理解大型代码库的关键,我确信这在 Emacs 中一定是可能的,但我找不到任何相关信息,也许 Emacs 专家会立即知道。
谢谢。
I'd like to find all the references to a class, method, variable in Emacs, the same way I'm able to do it in Eclipse with Ctrl+Shift+G (or Cmd+Shift+G on the Mac) once I've setup my project's ETags.
I can navigate the code fine, but finding references to things is key to understanding large code bases, I'm sure this must be possible in Emacs but I can't find anything about it, maybe an Emacs expert will know right away.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你最好的选择是 Mx rgrep 。 TAGS 文件仅列出标签的定义,而不列出引用它的人。
I think your best bet is an M-x rgrep . The TAGS file lists the definition of the tags only, not who references it.