language-ruby
language-ruby copied to clipboard
question: indentation for multi-line method params?
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...
Probably related (v0.199.0): here.