Wish Checkbox to not show remarked lines in quick search results

JohnC

Expert
Licensed User
Longtime User
If I do a quick search for a keyword, it's usually because I want to see everywhere where it is actually being used in my code, and I have little interest in seeing all the lines of comments containing that keyword.

But, when I do a quick search, the results will include lines that have been commented out:

B4X:
'Dim X = GetApplicationNumber(Me)
Dim X = GetApplicationNumber(Activty)
X = NumberofRuns
'X = NumberofCounts

As you can see, it is kind of hard to ignore the commented lines when trying to locate the instance of the keyword I am interested in.

So, it would be VERY helpful if under the results list there could be a Checkbox called "Ignore Commented Lines", which will hide any lines that are just comments.
 
Top