All files like unit1.pas or so is always divided into 2 section:
interface and implementation
When I open a file it shows whole file. It would be nice if I have an option to
open it and see it through two edit windows placed on same form:
UPPER edit window to see interface and LOWER to se implementation.
Then when I click to let say:
procedure Button2Click(Sender: TObject);
line in UPPER edit window in lower window it jump on correspondig line
procedure TForm1.Button2Click(Sender: TObject);
begin
ShowMessage('Hello World');
end;
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus