Sublime Text 2 - alignment of values ​​separated by commas

I installed the Sublime Alignment plugin . It works well for aligning the first character (default is =). How can I align this block in Sublime Text 2 in one shot:

INSERT INTO VALUES user (1, 'Alpha', 'Beta', 'Delta');
INSERT INTO user VALUES (2, 'A', 'B', 'D');

:

INSERT INTO VALUES user (1, 'Alpha', 'Beta', 'Delta');
INSERT INTO user VALUES (2, 'A', 'D');

Even if I add ,as an alignment character in elevated alignment, it only works for the first appearance,

+4
source share
1 answer

Align Tab is quite versatile and can align and not be limited to just the first character.

Install

+9
source

All Articles