双击突出显示
在 Notepad++ 中,如果双击一个单词以突出显示它,文件中所有出现该单词的位置也会突出显示,这一功能对于查找声明/使用变量的位置非常方便。
eclipse编辑器有这个功能吗? :) 如果是这样,我该如何打开它?
In Notepad++ if you double click a word to highlight it, all the occurrences of the word in the file are also highlighted, a feature that is quite handy for finding where variables are declared/used.
Does the eclipse editor have this functionality? :) If so, how can I turn it on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于 Eclipse Java 编辑器,您可以转到菜单中的“窗口”->“首选项”,然后转到选项树中的“Java”->“编辑器”->“标记出现次数”,然后选中您想要以这种方式突出显示的任何内容。
请注意,编辑器了解 Java 作用域规则,因此如果在两个不同的函数中有 2 个同名的局部变量,它将仅在当前函数内突出显示。
For the Eclipse Java editor, you can go to Window->Preferences in the menu, then Java->Editor->Mark Occurrences in the options tree and check off anything you want highlighted in this way.
Note that the editor understands Java scoping rules, so if you have 2 local variables with the same name in two different functions, it will only highlight within the current function.
我发现了一个名为 eclipse-glance 的插件,它可以像 notepad++ 一样进行搜索,但无需双击
http://code.google.com/ p/eclipse-glance/
I found a plugin called eclipse-glance that searches like notepad++ but without double-clicking
http://code.google.com/p/eclipse-glance/
我发现的最接近原始的是 alt-shift-O
Closest to original what I have found is alt-shift-O
要在 Eclipse 中激活双击高亮:
在 Eclipse 中激活双击高亮
对于更改双击的颜色Eclipse 中的高亮显示:
更改 Eclipse 中双击高亮显示的颜色
For activate double click hightlighting in Eclipse:
activate double click hightlighting in Eclipse
For change color of double click hightlighting in Eclipse:
change color of double click hightlighting in Eclipse