Consider I have a verbose method declaration, so I want to wrap method name so line with method declaration is not too long:
private Map<VeryLongClassName, VeryLongClassName>
veryLongMethodName(...
IDEA's autoformatting does not indent method name relatively to class members:
private Map<VeryLongClassName, VeryLongClassName>
veryLongMethodName(...
I however want it to be indented like in the first code snippet.
Is there a way to achieve this?