davidvarga / MBeautifier

MBeautifier is a MATLAB source code formatter, beautifier. It can be used directly in the MATLAB Editor and it is configurable.
GNU General Public License v3.0
490 stars 77 forks source link

Align multiple statement per line #123

Open tongyaop opened 1 year ago

tongyaop commented 1 year ago

I am wondering if this package have a feature to align scripts based on semi-columns?

e.g.


par.a = 1;            free.a = 1;  note.a = 'notea';
par.b = 2.34;         free.b = 1;  note.b = 'noteb';
par.c = 12839718923;  free.c = 0;  note.c = 'notec';
``