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

Unexpected alignment of python multiple declarations

Open WilliamQiufeng opened this issue 5 years ago • 1 comments

original code:

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

gives:

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

expected:

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

WilliamQiufeng avatar Jun 10 '20 06:06 WilliamQiufeng

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.

mayejudi avatar Mar 31 '22 16:03 mayejudi