In the older versions, I would often use compound search queries to get a list of results from several queries essentially on one screen. I pretty much wanted to find everything that had Tom and everything that Jerry all at once. In the past, I'd construct the query using the pipe ( | , symbol above the backslash) and it worked beautifully.
Code: Select all
Tom | Jerry
Code: Select all
Tom the cat.txt
Jerry the mouse.txt
Tom and Jerry.txt
Tom the cat and Jerry.txt
Tom and Jerry the mouse.txt
Tom the cat and Jerry the mouse.txt
Code: Select all
Tom cat | Jerry mouse
However, in the current versions the pipe is doing very bizarre things and I don't even really understand what it is currently useful for. If I enter
Code: Select all
Tom | Jerry
If I enter
Code: Select all
Tom cat | Jerry
Code: Select all
Tom the cat.txt
Tom and Jerry.txt
Tom the cat and Jerry.txt
Tom and Jerry the mouse.txt
Tom the cat and Jerry the mouse.txt
But if I reverse it,
Code: Select all
cat Tom | Jerry
Code: Select all
Tom the cat and Jerry the mouse.txt
Tom the cat and Jerry.txt
Tom the cat.txt
The strangeness expands the more search terms you enter. If you use
Code: Select all
Tom cat | Jerry mouse
Code: Select all
Tom and Jerry the mouse.txt
Tom the cat and Jerry the mouse,txt
Code: Select all
Tom cat the | Jerry mouse
Code: Select all
Tom the cat and Jerry the mouse.txt
But if you change the search to be
Code: Select all
Tom the cat | Jerry mouse
Code: Select all
Tom and Jerry the mouse.txt
Tom the cat and Jerry the mouse.txt
Is this intended right or some sort of bug? I'm trying to figure out how to put it into practice but it seems like the effects are really unpredictable.
For reference, all of the toggle options available from the menu bar are unchecked, included Enable Regex. I'm pretty positive I didn't use Regex in older versions of Everything. I would really love it if this is something I can fix by choosing some options toggle or something because the old pipe behavior was pretty integral for me.
Thanks!