I am working on refactoring a number of large projects in the new framework and find that I’m ending up with searches that only take one line of code into account and resulting in 1,000 or so results. In fact, what I’m looking for only concerns about 4-5 positions in my code. This means that I must trudge through the full list of results to find those 4-5 instances.
I’ve submitted a feature request to add a multi-line search similar to a grep function to allow us to search for multi-line patterns.
I know this is missing the point of the post (a FR) but there’s always the option of saving the project as a text based xojo_project and doing the search with something like Sublime which supports multiline searching (no need for regex) then just reference back to where you found what you need in Xojo but I’m sure you thought of that