Skip to content

Incorrect indentation of inner keyword arguments when aligning equal signs in out keyword arguments #879

Open
@jonniediegelman

Description

@jonniediegelman

This

function return_blah(; kwargs...)
    return Blah(;
        short_int            = 1,
        looooooooooooong_int = 2,
        named_tuple          = (
            inner1 = 3,
            inner2 = 4
        ),
        kwargs...,
    )
end

gets formatted to this

function return_blah(; kwargs...)
    return Blah(;
        short_int            = 1,
        looooooooooooong_int = 2,
        named_tuple          = (
        inner1 = 3,
        inner2 = 4
    ),
        kwargs...,
    )
end

which has obviously incorrect indentation for inner1 and inner2. When I don't line up the equal symbols like this, though, things don't get reformatted:

function return_blah(; kwargs...)
    return Blah(;
        short_int = 1,
        looooooooooooong_int = 2,
        named_tuple = (
            inner1 = 3,
            inner2 = 4,
        ),
        kwargs...,
    )
end

This is all using format with the default options. It's been this way pre- and post-v.2.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions