有没有一个好的“查找全部”功能? Eclipse 中的函数?
我一直在使用 Eclipse 来实现 R 和 C++。到目前为止我还没有找到可靠的“查找全部”功能。这似乎是一个简单的概念,我搜索一个字符串,例如“行”,并且该函数应该返回我当前打开的字符串中出现的所有字符串。 (即使它在我的工作空间中的所有文件中,也没关系。)
但是,我要么不明白如何正确使用“搜索”功能,要么它们有很多错误。
所以我的问题是如何在 Eclpise 中搜索文件中所有出现的字符串?
例如,Adobe Dreamweaver 多年来一直能够做到这一点。(尽管它与 R 和 C++ 完全无关)
我想查看所有事件的列表,然后能够单击特定的事件来转到它。
I have been using Eclipse for R and C++. So far I have not been able to find a reliable "find all" function. It seems to be an easy concept, I search for a string such as "rows" and the function should return all occurences of it within the that I currently have open. (Even if it's in all files in my owrkspace, that's fine too.)
However, I have either not understood how to use the "search" functions correctly or they are very buggy.
So my question is how do I search for all occurences of a string in a file in Eclpise?
Adobe Dreamweaver, for example, has been able to do this for years.(Although it's completely unrelated to R and C++)
I would like to view a list of all occurences and then be able to click on a specific occurence to go to it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打开Eclipse后,(对应工作区),在任意位置按“CTRL + H”,就可以搜索任何
After opening Eclipse, (corresponding to a workspace), Press "CTRL + H" anywhere and you can search anything
只需输入“行”或文本中某处的任何搜索词,选择它(使其突出显示),然后按“Alt+Ctrl+g”。这将对该术语执行全局搜索,非常方便。
Just type "rows" or whatever the search term is somewhere in text, select it (so that it becomes highlighted) then press "Alt+Ctrl+g". This will perform a global search for that term, pretty handy.