IDEA是一个很好使用的工具,在日常开发中经常使用,快捷键也是一个很好的节约开发时间的工具,在日常开发中也经常使用。如果快捷键假性失灵,不仅仅影响开发心情,也让有强迫症的人看着不舒服。我这里出现的情况虽然快捷键也可以使用,但是格式后的位数不是以前的默认的那种。
失灵后的快捷键格式化代码(快捷键:option(⌥)
+ command(⌘)
+ L
)
public class Test02 {
public final int value = 4;
public void doIt() {
final int value = 6;
new Runnable() {
final int value = 5;
@Override
public void run() {
final int value = 10;
System.out.println(this.value);
}
}.run();
}
public static void main(String[] args) {
Test02 test02 = new Test02();
test02.doIt();
}
}
使用的默认的配置(在Settings/Preferences
对话框中,Editor
> Code Style
> Java
中配置Tabs and Indents
),如图:
实际想要的还原的默认的效果:
public class Test02 {
public final int value = 4;
public void doIt() {
final int value = 6;
new Runnable() {
final int value = 5;
@Override
public void run() {
final int value = 10;
System.out.println(this.value);
}
}.run();
}
public static void main(String[] args) {
Test02 test02 = new Test02();
test02.doIt();
}
}
按照官网说的的设置了几次,也百度了几次,始终没有找到想要的效果。本想着应该可以还原这些配置,就找了下如何还原这个配置,功夫不负有心人,在一篇其他文章找到了还原方法,具体还原方式如下:
路径:File
> Manage IDE Settings
> Restore Default Settings...
,点击一下就还原到默认的设置,但是其他的一些设置也会被还原,需要重新设置一下。
备注:IDEA版本:IntelliJ IDEA 2021.3.3 (Ultimate Edition)