better-align
better-align copied to clipboard
[Feature request] Support for leading open parenthesis
If I have the following (Ruby) code:
do_the_thing(on: me,
with: it,
using: flamethrower,
ignoring: nil)
and I invoke Align on the with: it line, the result is:
do_the_thing(on: me,
with: it,
using: flamethrower,
ignoring: nil)
It would be great if it could align all the arguments, including the one on the line with the open-paren, to produce the following:
do_the_thing(on: me,
with: it,
using: flamethrower,
ignoring: nil)