Yes something like that, it's pretty good now, although it does not update live, you have to close it and open again to reflect the changes, is there a shortcut to refresh?
Also it would be nice if scanned for structures and interfaces and maybe the ';- ' marker like in the PB IDE.
Can the structures and interface autocomplete be implemented? Like when you type a structure and pops up the structure fields.
Forget the folder issue it was a problem of mine.
Another thing i have noticed is that the debug statements only appear in the console after the program exits, not during execution, this can be a problem. Maybe using to separate steps build / run would solve it?
For example:
Code:
debug "open"
OpenWindow(0, 0, 0, 600, 300, "foo", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
debug "opened"
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
debug "exit"
Debugs only show when you exit.