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
Description
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...