是否有“在文件中查找"?Eclipse中的快捷方式?
Eclipse 中是否有在文件中查找"快捷方式,就像在 Visual Studio 中一样(Ctrl+Shift+F)?
Is there a "Find in Files" shortcut in Eclipse, as there is in Visual Studio (Ctrl+Shift+F)?
我查看了这两个列表:
- Eclipse 快捷方式
- 显示所有快捷键"快捷键:Ctrl+Shift+L.
谢谢.
推荐答案
感谢其他两个解决方案,但这是我正在寻找的完整答案,它解决了我如何搜索文件中的所有文本,而不仅仅是类型、方法、包、构造函数和字段:
Thanks to the other two solutions, but here is the complete answer I was looking for, which addresses how I search all the text within the files, not just types, methods, packages, constructors, and fields:
- Ctrl+H打开搜索"对话框
- 文件搜索"选项卡,如果没有出现,展开窗口或使用左/右箭头
- 输入要搜索的文本
- 使用*.java",在我的例子中,因为我使用 Java 编码,只搜索这些文件
- 点击搜索"
相关文章