IntelliJ:如何像在 Eclipse 中一样自动突出显示变量
我的雇主希望我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
文件
>设置
(Mac 上的首选项
)编辑器
>代码编辑
>突出显示插入符号移动
在插入符号处使用元素
。File
>Settings
(Preferences
on Mac)Editor
>Code Editing
>Highlight on Caret Movement
Usages of element at caret
.我认为 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.
进入“设置”->“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.
尽管这是一个关于如何突出显示所有变量的问题,但第一点和第二点将回答,同时第三点将使您更加高效,并且如果您选择这样做的话,可以同时重命名所有变量。
Ctrl+Shift+F7
选择所有其他匹配项。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.
Ctrl+Shift+F7
to select all other occurrences.Shift + F6
to rename all occurences simultaneously.