IntelliJ 缩进避免使用 2 个制表符
IntelliJ indentation avoid using 2 tabs
IntelliJ 正在使用 2 个制表符来缩进代码,但我真的很讨厌它,但我找不到可以在设置中设置此参数的位置。
这些情况的一个例子如下:
public static void main(String[] args) {
new Thread(
() -> {} // as you can see this line of code is indented by 2 tabs
);
}
有谁知道如何改变这种行为?
要访问设置,在 Settings/Preferences 对话框中(Ctrl+Alt+s), 转到Editor |代码样式 并选择语言。您可以在那里设置您想要的设置。
您可以在
中更改制表符大小和缩进
Preferences
-> Editor
-> Code Style
-> [Language]
IntelliJ 正在使用 2 个制表符来缩进代码,但我真的很讨厌它,但我找不到可以在设置中设置此参数的位置。
这些情况的一个例子如下:
public static void main(String[] args) {
new Thread(
() -> {} // as you can see this line of code is indented by 2 tabs
);
}
有谁知道如何改变这种行为?
要访问设置,在 Settings/Preferences 对话框中(Ctrl+Alt+s), 转到Editor |代码样式 并选择语言。您可以在那里设置您想要的设置。
您可以在
中更改制表符大小和缩进Preferences
-> Editor
-> Code Style
-> [Language]