chouzz / vscode-better-align

Better vertical alignment with/without selection in any language.
https://marketplace.visualstudio.com/items?itemName=Chouzz.vscode-better-align&ssr=false#overview
Apache License 2.0
39 stars 4 forks source link

[Python] One line multiple assignment causes alignment w.r.t to variable names not equal signs #102

Open AnkithD opened 1 year ago

AnkithD commented 1 year ago

Original code:

report = func1('rname')
year, month, day = format(date, 'abcd')
filepath = report.get_filepath(year, month, date)

Expected output:

report           = func1('rname')
year, month, day = format(date, 'abcd')
filepath         = report.get_filepath(year, month, date)

Actual output:

     report   = func1('rname')
year, month,   day = format(date, 'abcd')
     filepath = report.get_filepath(year, month, date)