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
There is something wrong with the modifiers
-
vsub
- Posts: 501
- Joined: Sat Nov 12, 2011 11:51 am
There is something wrong with the modifiers
Last edited by vsub on Sun Jun 16, 2013 11:35 am, edited 1 time in total.
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: There is something wrong with the modifiers
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:
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: 501
- Joined: Sat Nov 12, 2011 11:51 am
Re: There is something wrong with the modifiers
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
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
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.
EXE|RAR NET
(EXE|RAR) NET quite natural
EXE|(RAR NET) strange.
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: There is something wrong with the modifiers
Added to my TODO list.Please, by all means, make it optionable in the settings.
-
Otter
- Posts: 18
- Joined: Sat Oct 22, 2011 10:25 am