Other than the beta's new choice for case-sensitive search, what other intended changes were there for making the F3 script editor searches be like other applications?

One other thing I've noticed is that it still has the behavior of finishing a search by jumping to line#1 of the original script - it used to do that only if the 'search all files' box were checked, but now it also happens when that box is not checked. To demonstrate, make line 100 of $script(2) be

alias test12345678 noop

Now go to the bottom of $script(3) and use F3 to begin a search for test12345678 without the 'search all files' checked.

In no-beta it dings the speaker, but the cursor stays in the same place. In new-beta, the same ding, but the cursor jumps to line 1 of that script.

--

Now go to the bottom of of $script(3) and check the 'search all files' box.

In no-beta it jumps to the match in the other script and highlights the matched text after closing the F3 box. Pressing F3 again jumps to the top of $script(3) because there are no more matches. In new-beta it does the same highlight except for not closing the F3 window, which I guess is fine. But it also does the same jump to the top of the beginning script.

--

Now go to line 101 and input the same string into the F3 box to start the search again without the 'search all files' checked.

In no-beta, it fails to find any matches in rows 1-100 of the same script, but the cursor remains there at the original row. In new-beta, it also fails to find anything in rows 1-100, but it jumps the cursor to line 1.

--

Now go to line 101 again and create the search again after checking 'search all files'. In no-beta and new-beta, they both jump to the top of the beginning script file without finding any matches in line 1-100 of the beginning scriptfile

--

I can see people not wanting to have the search include lines above the cursor, but it would be great if there's a checkbox to have the search wrap around the current file when 'search all files' is not checked. And it seems that 'search all files' should search all files, instead of searching all files except the lines above the cursor.

--

It would also be great if the F3 search had something web browsers and text editors have, which is a backwards search - at least within the current scriptfile. Without that, the least hassle method of searching for the prior occurrence of a string is to put the search string on the current row, then find a line where you can go high enough so that the first match stops being at your beginning cursor position, and then keep memorizing the matched line-numbers while pressing F3 until it finally reaches your original row.

If it's supposed to have the jump-to-top behavior, it would be great to have a hotkey and menu choice to jump to the $script and $scriptline from where the F3 search was created. That makes it a lot easier to steal code from one of your other aliases, as well as making it easy to find your way back to wherever you were coding when you started the search, in case a mis-typo in a search would ding you up to line 1.