(Love the Filters sidebar, thank you very much)
Lets say you have 3 filters (2 extension filters and 1 path filter):
.txt
.url
C:\Music
If you select first 2 filters (using Ctrl) Everything will search for only .txt and .url files. Makes sense.
But if you select all 3 filters Everything will search for .txt and .url files and ALL the files and folders in C:\Music.
I get it, but in my opinion it should search for only .txt and .url files in C:\Music.
What do you think, could be a tweak?
P.S. Double click a filter to edit it. Or right click - Edit Filter context menu item.
Filters behavior in Filters sidebar
Re: Filters behavior in Filters sidebar
Thank you for your feedback letmeindude,
Having two filter sidebars might help here.
The two filter sidebars would be ANDed together.
In theory you could select .txt and .url on one and c:\music in the other.
Specify OR and AND groups might be messy and tedious.
Thank you for your suggestions.
Having two filter sidebars might help here.
The two filter sidebars would be ANDed together.
In theory you could select .txt and .url on one and c:\music in the other.
Specify OR and AND groups might be messy and tedious.
Right click -> Edit is on my TODO list.P.S. Double click a filter to edit it. Or right click - Edit Filter context menu item.
Thank you for your suggestions.
-
- Posts: 62
- Joined: Sun Jun 13, 2021 10:22 am
Re: Filters behavior in Filters sidebar
By this logic selecting ".txt" and ".url" filters would not find any files because no file can be both .txt and .url at the same time.letmeindude wrote: ↑Tue Nov 09, 2021 9:34 pm But if you select all 3 filters Everything will search for .txt and .url files and ALL the files and folders in C:\Music.
I get it, but in my opinion it should search for only .txt and .url files in C:\Music.
Let's test this idea with Video and Audio filters. If we select them both on the sidebar and start typing a word, for example "night", in the search field then we get all video and audio files where the search word "night" is in the file name.
The basic filters such as Video and Audio can be typed in the search field like this, audio: video:
However, if we type them exactly like that then it tries to find all files that are simultaneously both audio and video. To make it work with the previous example those filters needs OR operator rather than AND (audio: | video:). Together with a search word it would look like this:
Code: Select all
<audio: | video:> night
So far we have two filters and a word search. To have filters working together they are separated by OR but ANDed with the search word.
If we next add a new filter, one that finds files in a path, for example your C:\Music, then the search would look something like this:
Code: Select all
<audio: | video: | path:C:\Music> night
Code: Select all
night audio: | night video: | night path:C:\Music
If you want to use filters in the way you described then one way is to assign a macro to a filter and type them in the search field. For example "textfile" macro to filter "ext:txt", "urlfile" macro to filter "ext:url" and "cmusicpath" to filter "path:C:\Music". Then you can search for
Code: Select all
<textfile: | urlfile:> cmusicpath:
Code: Select all
ext:txt;url C:\Music
Re: Filters behavior in Filters sidebar
Each individual sidebar would still OR multiple selected filters.By this logic selecting ".txt" and ".url" filters would not find any files because no file can be both .txt and .url at the same time.
Selecting .txt and .url in one filter sidebar = ".txt" | ".url"
Selecting C:\Music in the other filter sidebar = C:\music
ANDing these two filter sidebars together = <".txt" | ".url"> C:\music
It's not ideal (have to work with two panes), multiple filter sidebars is just an idea at this stage.
This would also work with multiple filter locations, for example you might have two filters C:\music and D:\music.
Maybe tabs would work? each tab is ANDed.
I have plans to add a favorites to the Folders sidebar too, which would allow you to 'bookmark' locations.
-
- Posts: 15
- Joined: Sat Jun 07, 2014 7:53 am
Re: Filters behavior in Filters sidebar
Great, thank you. Whatever you implement I'll be happy (except maybe tabs).
Re: Filters behavior in Filters sidebar
Everything 1.5.0.1285a adds double click to edit a filter in the filters sidebar.
Everything 1.5.0.1285a also adds a right click menu with the option to edit the selected filter in the filters sidebar.
Everything 1.5.0.1285a also adds a right click menu with the option to edit the selected filter in the filters sidebar.