Automatically indent enum parameters table-like in IntelliJ
Say I have an enum like this:
public enum TestEnum {
TEST1(5, 6, 18, 9, 3),
TEST2(10, 21, 4, 5, 34),
TEST3(4, 5, 8, 2, 16),
TEST4(3, 1, 92, 67, 22);
TestEnum(int i1, int i2, int i3, int i4, int i5) {
}
}
How can I automatically indent the parameters for the enum to look like this:
public enum TestEnum {
TEST1 (5, 6, 18, 9, 3),
TEST2 (10, 21, 4, 5, 34),
TEST3 (4, 5, 8, 2, 16),
TEST4 (3,...