Intellij Scala Formatter将注解和方法定义放在同一位置

时间:2018-06-24 09:08:13

标签: intellij-idea methods annotations formatter

我遇到类似于Intellij Formatter keeps moving method level annotation and method signature in one line的问题。

我的注释和方法定义在同一行中格式化。由于这是两个实体,因此应该放在不同的行中。

例如

@Test
public void testMethod(){
..............
}

IntelliJ不断将上述代码更改为:

@Test public void testMethod(){
..............
}

我尝试了上面文章中建议的相同操作,但是“重新格式化时保留,复选框换行符保留”的问题是,它使换行符到处保持。可以说我有一条长线

input.get(someVariableInput1, someVariableInput2, someVariableInput3, someVariableInput4,

然后按Enter键:

someVariableInput5, someVariableInput6);

如果我们格式化它,它将以以下方式格式化:

input.get(someVariableInput1, someVariableInput2, someVariableInput3,
someVariableInput4,
someVariableInput5, someVariableInput6);

我不想要。有人可以帮忙吗?预先感谢。

0 个答案:

没有答案