Quick (ones) format line with multi calls methods of 'builder' class

已回答

I have long line like:
return stream().map(..).flatMap(..).sorter(..).collect(..);

I want quick format to:
return stream().
   .map(..)
   .flatMap(..)
   .sorted(..)
   .collect(..);
   
I want format line only one time. I do not want to have auto format.
Can i did it?

0

There are no one time formatters in IntelliJ IDEA.

0

请先登录再写评论。