Akkie Malus
-
2009-08-04
- priority: 5 --> 6
When formatting this procedure the comment is not aligned:
function TestJCF: Integer;
begin
....Sleep(1);
....// Test with alignment of comments
....Application.ProcessMessages;
end;
The result:
function TestJCF: Integer;
begin
..Sleep(1);
....// Test with alignment of comments
..Application.ProcessMessages;
end;
Is it possible to align the start of the comment right below the start of the lines of code?
(used dots instead of spaces because of this: https://sourceforge.net/apps/trac/sourceforge/ticket/1757\)