spacing, begin/end
Brought to you by:
anthonysteele
Spacing options like in DelForExp, tab "spacing" in the
options dialog would be great!!!
Please allow the "extra indent for begin/end inside
procedures" to also move the statements between begin/end.
Example:
procedure IncA;
begin
if a=0 then
begin
inc(a);
end;
end;
gets
procedure IncA;
begin
if a=0 then
begin
inc(a);
end;
end;
not
procedure IncA;
begin
if a=0 then
begin
inc(a);
end;
end;