I need help with the JEDI Code Format feature. After using the format feature (Ctrl-D) simple code looks like this, with the
// test comment shown on it's own line.
procedure TForm1.FormShow(Sender: TObject);
var
i: integer;
procedure test;
begin
i := 1;
end;
// test
begin // Form Show
Test;
end;
I want the test comment to look like this:
procedure test;
begin
i := 1;
end; // test
I think this problem only occurs when I have a comment on the end statement of an
embedded procedure or function. And it only happens on the
last embedded procedure or function. Thus, only on the embedded end statement just before the begin statement.
What can I do to the JCF Format Settings to fix this so that the comment stays on the same line as that end statement?