如何在 Eclipse 中突出显示多个变量?

发布于 2024-12-02 14:47:25 字数 68 浏览 0 评论 0原文

在 Eclipse 中,如果将光标放在某个变量上,它将在代码中的任何位置突出显示该变量。我想知道如何一次突出显示多个变量?

In Eclipse, if you rest your cursor on a variable it will highlight that variable everywhere in the code. I was wondering how you could highlight more than one variable at a time?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事还在继续 2024-12-09 14:47:25

不完全是您想要的,但使用查找对话框您可以在同一搜索中查找两个变量。

  1. 标记选项中的正则表达式复选框。
  2. 在“查找”文本框中使用正则表达式。例如,如果您要查找 indexcount 变量,请使用 (index)|(count)
  3. “查找”按钮将循环遍历 indexcount 的所有实例。

这可以扩展到更棘手的搜索。

Not exactly what you want, but using the find dialog you can look for two variables in the same search.

  1. Mark the Regular Expressions Checkbox in the Options.
  2. Use a regular expression in the Find textbox. For example if you are looking both for the index and count variables use (index)|(count).
  3. The Find button will cycle through all instances of both index and count.

This can be expanded to even more tricky searches.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文