tid-kijyun / XcodeSourceEditorExtension-Alignment

This Xcode source editor extension align your assignment statement.
MIT License
217 stars 24 forks source link

borks on += #6

Closed genedelisa closed 7 years ago

genedelisa commented 7 years ago

This will align on = just fine.

But if you have +=, it will still align on = instead of +=

example:

s += "foo"
s += "bar"

becomes

s +  = "foo"
s +  = "bar"
tid-kijyun commented 7 years ago

I've fixed this issue.

genedelisa commented 7 years ago

Nice. Keep up the good work!