Hello, are you planning to release the source code of Amigo-Ide?
Yes, it will be included. IDE is written in Delphi and uses TSynEdit. I guess it will be easy to port IDE code to Lazarus/FPC, but it is not ready for now.
Will there be a unit importer like with PaxScripter?
Latest Delphi versions provide good RTTI support, so I was not planning the importer. As for the Lazarus/FPC, I use
{$IFDEF FPC}
type
TRTTIField = Pointer;
TRTTIIndexedProperty = Pointer;
{$ENDIF}
because I did not find the correspondence Delphi-FPC for these classes. I think I have to create it.
A.