Before:
procedure Test;
begin
var LTest := 1;
var LTest2: Integer := 1;
Expected after:
procedure Test;
begin
var
LTest := 1;
var
LTest2: Integer := 1;
The actual after is the same as Before. I have the "Line Breaks > After var, type, etc." checkbox set to True.
I think this should be a separate option. Many people seem no to use line breaks in inline var declarations on purpose. Also, your expected formatting is not what I would expect. I would expect an additional indent for the actual declaration like this: