(12-12-2025, 10:33 PM)justsomeguy Wrote: I think the only reason I have stuck with current IDE is the syntax checking. Any chance that might be included?
Same here - I appreciate the realtime syntax checking and auto-formatting of the default IDE.
What would really be neat would be if it included an "Immediate window" like the Office (Excel, Word) VBA editor has. Not only does it function like a terminal where you can use debug.print to write to it, you can enter commands directly in it and they run, and if the program is paused (user presses Pause/Break key) you can access the currently instantiated variables and their values (e.g., print MyVar). You can even use assignment statements to change values inside the running program (e.g., MyVar = {new value}). Then you can press F5 to un-pause your program and it continues running using the tweaked values (or F8 to step through line by line, Ctrl+Shift+F8 to step out of current routine then pause, etc.). It's a really nice & simple yet powerful way to interact with & debug your programs.

