0 votes

The results pane shows only the searched files with hits > 0, but I would like to see the hits == 0 files included. Can't find an option for this.

by (20 points)

1 Answer

0 votes

It depends on how complex your search criteria is but for simple criteria you could try something like this:

Containing Text: searchterm OR NOT searchterm
by (29.1k points)
The use case is to see which (large) log files show problems and which one not.

(searchterm OR NOT searchterm) can be simplified to True, which makes it a trivial solution. Not need to search in the first place ;)
Yes, it will include ALL files but the key thing here is that it will include files that have Hit Count == 0. If you ONLY want Hit Count == 0 just put 'NOT searchterm'.
...