Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
12-13-2025, 09:57 AM
(This post was last modified: 12-13-2025, 09:59 AM by SpriggsySpriggs.)
(12-12-2025, 09:43 PM)Kernelpanic Wrote: I like the indicator that the compiler is working; however, it should disappear again after the translation is finished. It would be a good addition, as you can see how the compilation is progressing, similar to the download.
I am planning on adding a button to collapse the terminal pane
(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?
Heck, having some type of plug-in support would be awesome.
Keep up the good work!
It's on my to-do list. Once I have more stuff knocked out, I'll focus on adding a syntax checker. I want it to be not as heavy as what the QB64 IDE uses. So I won't be checking every keypress.
The noticing will continue
Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
I haven't coded the logic for actually toggling the terminal yet but as you can see, I have added a button for it with an appropriate tooltip and the ability to shrink and expand the terminal.
The noticing will continue
Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
12-13-2025, 06:03 PM
(This post was last modified: 12-13-2025, 06:04 PM by SpriggsySpriggs.)
Added the ability to show and hide the terminal. It remembers the last position of the pane and will restore it to that height. So you can make it as small or as large as you want and it will go back to that position. Apologies for the look, I recorded this on a Windows machine and ran the program in WSL.
The noticing will continue
Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
Asian characters can be displayed in the IDE. You would still need to know how to handle them in order to make them work in your programs, though. But, if you wanted, you could have a Chinese, Korean, or Japanese comment in your code:
The noticing will continue
Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
12-13-2025, 10:53 PM
(This post was last modified: 12-13-2025, 10:54 PM by SpriggsySpriggs.)
Using qb64pe's command line switches, I'm calling my pipecom library to run "qb64pe -z" on the source file to try translating to C. If it fails, I catch it, parse the error line from the output, and then automatically highlight the line that is problematic. I have also added the ability to press F5 to compile and run and F11 to just compile.
The noticing will continue
Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
Color in the virtual terminal pane and auto scrolling to the problem line.
The noticing will continue
Posts: 902
Threads: 38
Joined: Apr 2022
Reputation:
72
Opening a file with the dialog and dynamically updating the title bar with the file name.
The noticing will continue