Have a suggestion for "Everything"? Please post it here.
b0nk
Posts: 2 Joined: Sun Feb 01, 2026 7:18 pm
Post
by b0nk » Sun Feb 01, 2026 7:38 pm
Hi!
I very frequently use the lovely
content: search and I realized that it would be very useful to be able to see and sort the # of matches per file.
Example:
would find and display a result from the file foo.txt, and if you added the "Matches" column it would show the number of matches of
foo found within the file.
Thanks for hearing me out!
void
Developer
Posts: 19901 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Mon Feb 02, 2026 12:18 am
Thank you for your feedback.
I am considering a content occurrence column.
Thank you for the suggestion.
For now, it can be done with
formulas :
Code: Select all
add-column:a a:=STRINGCOUNT(GETPROPERTY($filename:,"content"),"foo")
The number of occurrences of foo is shown in Column A.
b0nk
Posts: 2 Joined: Sun Feb 01, 2026 7:18 pm
Post
by b0nk » Mon Feb 02, 2026 12:03 pm
void wrote: Mon Feb 02, 2026 12:18 am
Thank you for your feedback.
I am considering a content occurrence column.
Thank you for the suggestion.
For now, it can be done with
formulas :
Code: Select all
add-column:a a:=STRINGCOUNT(GETPROPERTY($filename:,"content"),"foo")
The number of occurrences of foo is shown in Column A.
Marvelous!
NotNull
Posts: 5961 Joined: Wed May 24, 2017 9:22 pm
Post
by NotNull » Mon Feb 02, 2026 12:22 pm
See also
this thread for more options like creating a filter.