Page 1 of 1

Global VF syntax

Posted: 29 Aug 2015 17:03
by binocular222
This normal VF hide all lrc and txt files:

Code: Select all

filter "!lrc|txt"
This GVF hide everything except txt files

Code: Select all

filter "nec:!lrc|txt", 2
???
1) Why? They have same syntax!
2) How to make a GVF that hide all lrc and txt files?

Re: Global VF syntax

Posted: 29 Aug 2015 17:53
by admin
1)

Code: Select all

filter "nec:!lrc|txt", 2;
nec: only affects "!lrc", not the whole term. So it reads: "It must not be lrc, OR it can be txt."

2) This way:

Code: Select all

filter "nec:!jpg AND nec:!txt", 2;
This is clumsy. I hope to come up with something better when the feature is officially released.

PS: In next beta this brand-new less clumsy syntax will work:

Code: Select all

filter "no:jpg; no:txt", 2;

Re: Global VF syntax

Posted: 29 Aug 2015 20:57
by SkyFrontier
From latest beta:

Code: Select all

 Hmm, I'm tempted to change "nec:" to "yo:" ... :)
While it's cooler, one may take it for "years old"...