Disable code formatting for a section in Delphi

In Eclipse with java, there is a special @formatter: off / on notation to disable / enable formatting from the source section. Is there a similar feature in Delphi 2010? This is because anonymous procedures are ugly formatted:

begin
  Synchronize(procedure begin ShowMessage('Hi'); end);
end;

      

+3


source to share





All Articles