A small modification to make multiple search phrases carry over from the FARR input box to Everything:
^ev(.*)
Everything Search $$1 | C:\program files\everything\Everything.exe -search "$$1"
-Nod5
I made another small revision in my FARR alias for Everything. Maybe someone else finds use for it too. I'm now using the most simple and quick alias possible: a space at the start of the FARR input box. So " file.mp3" + enter opens Everything and searches for file.mp3. But "file.mp3" does a regular FARR search.
Everything Search $$2 | C:\Program Files\Everything\Everything.exe -search "$$2"
and the new regexp:
^(?: |ev)( |)(.*|)
The same initial-space-alias could probably also be used for the Everything plugin but I haven't tried that yet.