better-align icon indicating copy to clipboard operation
better-align copied to clipboard

[Feature request] Support for leading open parenthesis

Open asilano opened this issue 6 years ago • 0 comments

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)

asilano avatar Nov 11 '19 16:11 asilano