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 | JerryCode: 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.txtCode: Select all
Tom cat | Jerry mouseHowever, 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 | JerryIf I enter
Code: Select all
Tom cat | JerryCode: 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.txtBut if I reverse it,
Code: Select all
cat Tom | JerryCode: Select all
Tom the cat and Jerry the mouse.txt
Tom the cat and Jerry.txt
Tom the cat.txtThe strangeness expands the more search terms you enter. If you use
Code: Select all
Tom cat | Jerry mouseCode: Select all
Tom and Jerry the mouse.txt
Tom the cat and Jerry the mouse,txtCode: Select all
Tom cat the | Jerry mouseCode: Select all
Tom the cat and Jerry the mouse.txtBut if you change the search to be
Code: Select all
Tom the cat | Jerry mouseCode: Select all
Tom and Jerry the mouse.txt
Tom the cat and Jerry the mouse.txtIs 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!