sublime_alignment icon indicating copy to clipboard operation
sublime_alignment copied to clipboard

Align after the alignment character.

Open MarioRicalde opened this issue 14 years ago • 3 comments

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

MarioRicalde avatar Nov 22 '11 07:11 MarioRicalde

Same thing here, I'd request a single space be enforced after the =. i.e. = 1 instead of =1

dmeagor avatar Jan 19 '12 11:01 dmeagor

also better if it's possible for

a         =    b      =1
c = def         = 2
ghi = 3

to

a   = b   = 1
c   = def = 2
ghi = 3

Maysora avatar Aug 15 '12 07:08 Maysora

This would be great to have.

ericmagnuson avatar Sep 18 '13 05:09 ericmagnuson