Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

question: indentation for multi-line method params? #44

Open
@tony-kerz

Description

@tony-kerz

hi,

auto-indent for the following yields:

    result = Foo.bar
    (
    from_month: from_month,
    to_month: to_month
    )

is there any way to coax auto-indent to yield the parameters indented like so...?:

    result = Foo.bar
    (
      from_month: from_month,
      to_month: to_month
    )

similarly, the following yields like so:

    result = Foo.bar(from_month: from_month,
    to_month: to_month)

i might have expected something like:

    result = Foo.bar(from_month: from_month,
                     to_month: to_month)

regards,
tony...

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions