OR and directory search
OR and directory search
The search string "\asd|\qwe yxc" with match path deactived (find only files named "yxc" in directories starting with "asd" or "qwe") worked before (i think in the stable version 1.2.1.371). In the new Beta it works differently. It finds files or directories starting with "asd" or "qwe yxc". Was this change on purpose and if yes, how can I replicate the old behaviour?
Re: OR and directory search
AND has higher precedence than OR in 1.3.
This change was to follow the more common order of operations.
You will need to search for:
This change was to follow the more common order of operations.
You will need to search for:
Code: Select all
<\asd|\qwe> ycx
Re: OR and directory search
Thanks very much.