In Eclipse with java, there is a special notation @formatter:off/on to disable/enable formatter from a section of source. Is there some similar feature in Delphi 2010? It's because anonymous procedures are ugly formatted:
begin
Synchronize(procedure begin ShowMessage('Hi'); end);
end;