我希望Idea在格式化代码时在结束大括号后插入一个空行。
所以,
if(condition1)
{
someMethod();
}
else
{
anotherMethod();
}
statement1;
statement2;
会以此结束
if(condition1)
{
someMethod();
}
else
{
anotherMethod();
}
statement1;
statement2;
我浏览了“代码样式”对话框,但找不到相关选项。