Here's what I use
function Test(lots of params,
lots more params): integer;
var
var1: integer;
var2: string;
begin
if (var1 = 1) then try
Dostuff;
except
DoExceptionStuff()
end {if try}
else MoreStuff;
if (longtest) then begin
Code.That.Fills.The.Line(100) +
Morecode;
end; {begin..end not needed here}
end;
The reason I use this is that every indent is caused by a begin or try, there are no unindents out of the blue, as you get in this code.
Horror code
if (a = b) then
begin
...
lots and lots of lines
...
end;
rest of the code <<-- What block does this unindent belong to and why????
I always indent with 2 spaces, because that prevents horizontal scrolling as much as possible and is enough to visually see the blocks clearly.
The exception is the function header where it's nice to have the params lined up.
I put begin at the end of the statement, because there's no need to put it on a separate line, the start of indentation is always caused by a begin.
Use of begin .. end blocks to aid in debugging
I always put the code behind if ... then inside a begin ... end block if it doesn't fit on the same line.
Mostly because otherwise the compiler will see it as one statement together with the if .. then statement and will not allow to stop on just that line in the debugger.
Finally if there's lots and begin and end's I label the end so I know which begin it belongs to. This helps me when refactoring the code.