Indention for two line method definition

Answered

Hi,

I would like to configure a indention similar to what I use in Eclipse:

public static final MethodDefinition<Test> methodDefinitionForAVeryLongMethodName = new MethodDefinition<>(
        "methodDefinitionForAVeryLongMethodName", null, null)
                .name("Test")
                .desecription("test");

Unfortunately, all I can do is this:

public static final MethodDefinition<Test> methodDefinitionForAVeryLongMethodName = new MethodDefinition<>(
        "methodDefinitionForAVeryLongMethodName", null, null)
        .name("Test")
        .desecription("test");

These are my settings:

Can anybody help?

0
1 comment

Hello,

Seems currently it's not possible. Feel free to create feature request on YouTrack: https://youtrack.jetbrains.com/issues/IDEA

0

Please sign in to leave a comment.