There is something wrong with the modifiers

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
vsub
Posts: 445
Joined: Sat Nov 12, 2011 11:51 am

There is something wrong with the modifiers

Post by vsub »

I'm using the newest beta and this for example
folder:"D:\Video\" !Op | folder: DVD
don't display anything while 649b displayed everything correctly.

If I remove everything after OR,then it displays the D:\Video folder and excludes folders that contains Op
Last edited by vsub on Sun Jun 16, 2013 11:35 am, edited 1 time in total.
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: There is something wrong with the modifiers

Post by void »

I have got this wrong again, AND should have higher precedence. Fixed for the next update...

Everything should be (the standard):
A || B && C ≡ A || (B && C)

But it is currently:
A || B && C ≡ (A || B) && C

For now, please use grouping:

Code: Select all

folder:<"D:\Video\"  !Op> | <folder:  DVD>
vsub
Posts: 445
Joined: Sat Nov 12, 2011 11:51 am

Re: There is something wrong with the modifiers

Post by vsub »

Ok...and,it looks like I only need to add <> only around the first search filter

btw this child: modifier looks like really useful function :)
Otter
Posts: 18
Joined: Sat Oct 22, 2011 10:25 am

Re: There is something wrong with the modifiers

Post by Otter »

Please, by all means, make it optionable in the settings. It's impossible to use a file searcher like that, it's wrong. "And" should have lower priority than OR. In programming it is usually maybe higher, but here even the nature of the AND operator, being a space, hints that it is for dividing the blocks.
EXE|RAR NET
(EXE|RAR) NET quite natural
EXE|(RAR NET) strange.
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: There is something wrong with the modifiers

Post by void »

Please, by all means, make it optionable in the settings.
Added to my TODO list.
Otter
Posts: 18
Joined: Sat Oct 22, 2011 10:25 am

Re: There is something wrong with the modifiers

Post by Otter »

Coolzers.
Post Reply