Intellij Idea代码样式 - 在关闭大括号后插入空白行

时间:2014-01-23 07:14:30

标签: intellij-idea coding-style

我希望Idea在格式化代码时在结束大括号后插入一个空行。

所以,

if(condition1)
{
    someMethod();
}
else
{
    anotherMethod();
}
statement1;
statement2;

会以此结束

if(condition1)
{
    someMethod();
}
else
{
    anotherMethod();
}

statement1;
statement2;

我浏览了“代码样式”对话框,但找不到相关选项。

0 个答案:

没有答案