我正在尝试在IntelliJ中创建代码样式以保持格式一致。我想确保不超过正确的边距,但是当我重新格式化并且IntelliJ试图强制执行时,它通常会产生一些非常奇怪的外观。
例如,它经常喜欢在字符串中间断行,导致类似
public static final String SOME_CONSTANT_STRING = "A long string that is cut" +
+ " off in the middle.";
我想要的是,IntelliJ只能在空格处打破这一行,所以该行看起来像
public static final String SOME_CONSTANT_STRING =
"A long string that is cut off in the middle";
这种行为可能吗?