The right-click contextual menu now works in the Help area too (the Edit menu is now also aware that the focus is in the Help area, so Select All and Copy will work with the Help text. Hey @bplus!)
The IDE highlights the offending line in red, and the status bar shows this:
[ This attachment cannot be displayed inline in 'Print Page' view ]
Is it something different you're referring to?
What you're asking for is column information, on top of the current row information.
v1.5 seems to clear up an odd IDE color problem I had in v1.4-32 bit. I never did report on it, but sometimes variable names would be partly colored, like in this screen cap below. Doesn't happen in v1.5.
- Dav
Does the present error detection detect multiple errors on the same line or does it just report upon the first error encountered?
Just a little thing, Fellippe. I downloaded the latest IDE from Github for the _MOUSEMOVEMENT test (this works great now). The IDE tells me that it will compile to the folder where QB64 is. OK. Then check the option to compile to the source folder. A message appears stating that it will be compiled to the source folder. It's alright. BUT, if after this option you don't at least make a space in the source code, you just don't take any action, you just change the option and choose to run, the new compilation won't take place.
DO_
If your line is so long that this is necessary, you're DOing wrong.
If there’s no concern of lost spaces from line to line, then the solution might be as simple as having the IDE strip off any leading spaces on line two, and then auto-indenting to the proper place to line up as before.
For sharing your code, I recommend you keep CHR$(248), as extended ascii characters may eventually get corrupted, depending on the website.
The old version of the ASCII chart would only add the actual character, the new one will allow you to search for the glyph you're after and insert CHR$(code) easily.
Maybe another tweak can be done to the new double-click feature...
Current behavior:
- a double-click always resets the default button to "Insert char" and then inserts the char into the edited code
Better behavior:
- if I TAB to change the default button to "Insert CHR$" and then double-click a char, should keep the default button "Insert CHR$" and insert CHR$(...)
- maybe better it should insert CHR$(...) + , for concatenation (cause it's easier to delete the final +, rather then afterwards insert it between all the inserted CHR$(...)
- even better better, add a checkbox to allow the user to choose, if he wants the + or not