QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: FellippeHeitor on January 06, 2021, 01:13:36 am

Title: Search improvements (v1.5)
Post by: FellippeHeitor on January 06, 2021, 01:13:36 am
In the latest development build (https://www.qb64.org/portal/development-build/), look for the following fixes/improvements:


If you are on the beta-testing wagon, please try to break the new features above and report below.
Title: Re: Search improvements (v1.5)
Post by: Dav on January 07, 2021, 08:18:56 am
It's working well for me.  I'm testing the 32-bit version.  I've really been trying to abuse it, to find any bugs, but it's rock solid!   I found out an odd thing playing around - you can over-ride the IDE formatting settings, in code, by placing an underscore before the line.  Was surprised that the below code compiled as is.  Not that this matters for anything, but I just found it interesting that the IDE bypasses auto capping and formatting the code after an underscore.


1 _
do
a_
=_
rnd*3
_
for t=1to 43step 1
:_
_
print a,t+rnd*333
_
next
_
::::if inkey$<>""then end
_
loop


:)

Good job on what looks like will be another good version release!

- Dav

Title: Re: Search improvements (v1.5)
Post by: FellippeHeitor on January 07, 2021, 10:16:38 pm
Glad Search update is proving to be robust. Thanks for trying it, Dav!

And yes, the auto formatter doesn't mix with line continuation at all. If it's ever an issue, advice is to write the line first, so it gets formatted, and then break it with underscores if it's too long.