WarWithinMe / better-align

A vscode extension to provide better vertical alignment
Other
75 stars 39 forks source link

Unexpected alignment of python multiple declarations #60

Open WilliamQiufeng opened 4 years ago

WilliamQiufeng commented 4 years ago

original code:

abc, bcd = (1, 0)
cde = 1

gives:

abc, bcd = (1, 0)
    cde  = 1

expected:

abc, bcd = (1, 0)
cde      = 1
mayejudi commented 2 years ago

I am having the same issue. Not sure which setting I have to change... this make the extension a lot less useful in python. So I would appreciate if someone knows how to fix this.