Author Topic: Search improvements (v1.5)  (Read 1541 times)

0 Members and 1 Guest are viewing this topic.

FellippeHeitor

  • Guest
Search improvements (v1.5)
« on: January 06, 2021, 01:13:36 am »
In the latest development build, look for the following fixes/improvements:

  • Updated help - new commands added (wiki updated too).
  • Fixed search history list - it now properly shows even when the help is open and the list is too long (Thanks @Dav for reporting).
      [ You are not allowed to view this attachment ]  
  • The "Find" button (yes, it's a button - a substitute for the F3 key to repeat the last search) now gets highlighted when hovered.
      [ You are not allowed to view this attachment ]  
  • CTRL+F2 has been added as a shortcut to clicking the "back" arrow (quick navigation). Hi, @Cobalt!
  • Dialogs Search->Find and Search->Change gained new functionality to allow ignoring text contained in comments (both REM and apostrophe comments) and in "strings". Conversely, you can also search for text exclusively inside "strings" or 'comments.
      [ You are not allowed to view this attachment ]  

If you are on the beta-testing wagon, please try to break the new features above and report below.
« Last Edit: January 06, 2021, 01:18:19 am by FellippeHeitor »

Offline Dav

  • Forum Resident
  • Posts: 792
    • View Profile
Re: Search improvements (v1.5)
« Reply #1 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

« Last Edit: January 07, 2021, 08:21:18 am by Dav »

Marked as best answer by on June 20, 2024, 11:09:20 am

FellippeHeitor

  • Guest
Re: Search improvements (v1.5)
« Reply #2 on: January 07, 2021, 10:16:38 pm »
  • Undo Best Answer
  • 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.