Delphi's native formatter can't do this type of formatting, can Gexpert do it ?
Example breaks with 32
If Table1.fieldbyName('campo').Asstring = varcampo then
With the formatting it looks like this
If Table1.fieldbyName('campo').
Asstring = varcampo then
But I would like training to stay like this
I would only break when there is a space
If Table1.fieldbyName('campo').Asstring
= varcampo then
I think this is about inserting a line break if the maximum line length is reached.
That's already implemented like you requested. Why didn't you just test it?