在项目层次结构中查找对 Eclipse 项目元素的引用
我正在 Eclipse 中开发一个 Web 项目。我正在寻找一些方法来查找参考资料 特定文件(.js、.css、.html......)。
我想知道这个特定文件的用途。 相同的功能 ctrl+shift+g
但不幸的是这个快捷方式仅适用于关键字(如 java 类或方法)
是否有任何插件可用于在 eclipse 中执行此操作?
谢谢 !
I am working on a web project in eclipse. I am looking for some way to find references to
a particular file (.js,.css,.html.....).
I want to know that where this particular file is used.
the same functionality ctrl+shift+g
but unfortunately this shortcut only works for keywords(like java classes or methods)
Is there any plugin available for doing this in eclipse ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
普通搜索对话框 Ctrl+H 怎么样?输入文件名作为文本。
Java 搜索工作起来“更容易”,因为 Eclipse 知道在哪里查找(.java 文件和 .class 文件)以及查找内容(类在抽象语法树或字节码中的出现)。
对于具有“文件格式知识”的通用文件搜索,它需要知道如何解析它正在查找的每个文件。
因此,最通用的方法是使用 Ctrl+H 进行简单的文本搜索。
How about the normal search dialog, Ctrl+H? Enter the filename as the text.
It's 'easier' for the Java search to work, as Eclipse knows where to look (.java files and .class files) and what to look for (occurences of the class in the Abstract Syntax Tree or bytecode).
For a generic file search that has 'file format knowledge', it needs to know how to parse each file it's looking in.
So the most general way of doing this is a simple text search using Ctrl+H.