Intellij idea 如何在IntelliJ中删除代码格式上的换行符?

Intellij idea 如何在IntelliJ中删除代码格式上的换行符?,intellij-idea,format,Intellij Idea,Format,如何使intellij从此位置删除换行符 long orderId = orderInserter .executeAndReturnKey(values) .longValue(); 为此: long orderId = orderInserter.executeAndReturnKey(values).longValue(); 好的,我刚找到答案。它是:File

如何使intellij从此位置删除换行符

long orderId =
                orderInserter
                        .executeAndReturnKey(values)
                        .longValue();
为此:

long orderId = orderInserter.executeAndReturnKey(values).longValue();

好的,我刚找到答案。它是:
File->Settings->Editor->code Style->Java->wrapping和大括号
取消选中换行符。