Skybuck Flying
2011-09-11 10:50:26 UTC
I want my code to look as follows:
if a < b then
begin
// ...
end else
begin
// ...
end;
I do not want it to look like:
if a < b then
begin
// ...
end
else
// ^
// this makes it hard to see to which branch the else belongs
// when there are multiple branches.
begin
// ...
end;
Unfortunately it does not seem possible to configure the source formatter so
it does the first ?
Bye,
Skybuck.
if a < b then
begin
// ...
end else
begin
// ...
end;
I do not want it to look like:
if a < b then
begin
// ...
end
else
// ^
// this makes it hard to see to which branch the else belongs
// when there are multiple branches.
begin
// ...
end;
Unfortunately it does not seem possible to configure the source formatter so
it does the first ?
Bye,
Skybuck.