IntelliJ:如何像在 Eclipse 中一样自动突出显示变量

发布于 2024-09-24 12:26:26 字数 169 浏览 3 评论 0原文

我的雇主希望我使用 IntelliJ 进行 Java 开发。以前我一直用eclipse。

Eclipse 中我最喜欢的功能之一是能够单击变量、方法参数、类字段等,并查看整个类中突出显示的这些变量的用法。

有没有办法在 IntelliJ IDEA 中启用此功能?我使用的是终极版 9.0.3。

My employer wants me to use IntelliJ for Java development. Previously, I've always used eclipse.

One of my favorite features in eclipse was being able to click on a variable, method parameter, class field, etc and see the usage of those variables highlighted throughout the class.

Is there a way to enable this feature in IntelliJ IDEA? I'm using Ultimate version 9.0.3.

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

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

发布评论

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

评论(4

極樂鬼 2024-10-01 12:26:26
  1. 转到文件> 设置(Mac 上的首选项
  2. 转到编辑器 > 代码编辑 > 突出显示插入符号移动
  3. 启用在插入符号处使用元素

设置

  1. Go to File > Settings (Preferences on Mac)
  2. Go to Editor > Code Editing > Highlight on Caret Movement
  3. Enable Usages of element at caret.

Settings

诗笺 2024-10-01 12:26:26

我认为 Intellij 默认情况下不这样做是有原因的。
如果您点击代码上的某个符号,您可以按Ctrl+Shift+F7,然后它会突出显示(高可见,而不是像默认下划线一样)所有出现的情况的符号。好处是,如果您移出该符号的光标,无论您走到哪里,它都会保持突出显示状态。

提示:您可以同时突出显示想要的不同符号。
提示 2:F3 / Shift + F3 分别转到下一个/上一个出现的位置。

I think Intellij does not do this by default for a reason.
If you click in a symbol on your code, you can hit Ctrl+Shift+F7, then it will highlight (High visible, not just like the default underline) all occurences of the symbol. Good thing is, if you move out the cursor of that symbol, it will keep it highlighted wherever you go.

Tip: You can highlight how many different symbols you want at the same time.
Tip 2: F3 / Shift + F3 goes to the next / previous occurence respectively.

扛刀软妹 2024-10-01 12:26:26

进入“设置”->“IDE 设置”->“编辑器”->“配色方案”->“常规”

将 Dracula 复制为 MyOwnDracula 之类的副本(无法更改内置架构)。

找到您需要更改的内容,在本例中是“代码”部分下的“插入符号下的标识符”,然后根据您的喜好更改前景和背景的颜色。

Go into Settings->IDE Settings->Editor->Color Scheme->General

Make a copy of Dracula to something like MyOwnDracula (can't change the built in schema).

Find whatever you need to change, in this case it's "Identifier under caret" under the 'Code' section and change the colors for foreground and background to your liking.

夜唯美灬不弃 2024-10-01 12:26:26

尽管这是一个关于如何突出显示所有变量的问题,但第一点和第二点将回答,同时第三点将使您更加高效,并且如果您选择这样做的话,可以同时重命名所有变量。

  1. 将光标放在某个事件上。
  2. 执行 Ctrl+Shift+F7 选择所有其他匹配项。
  3. 然后按 Shift + F6 同时重命名所有出现的事件。

Even though this is a question on how to highlight all variables, point one and two will answer that meanwhile point 3 will make you more productive and rename all variables simultaneously if you so choose to do so.

  1. With your cursor on an occurence.
  2. Do Ctrl+Shift+F7 to select all other occurrences.
  3. Then Shift + F6 to rename all occurences simultaneously.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文