sublime_alignment
sublime_alignment copied to clipboard
Align after the alignment character.
If I align this block:
variable = 1
other_variable = 2
yet_another_variable = 3
I end up with:
variable = 1
other_variable = 2
yet_another_variable = 3
While it's expected to end with:
variable = 1
other_variable = 2
yet_another_variable = 3
Same thing here, I'd request a single space be enforced after the =. i.e. = 1 instead of =1
also better if it's possible for
a = b =1
c = def = 2
ghi = 3
to
a = b = 1
c = def = 2
ghi = 3
This would be great to have.