Everything v1.5 Build 1386a broke my “Find all instances” macro

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
SuperDude
Posts: 223
Joined: Thu Sep 25, 2014 7:57 pm

Everything v1.5 Build 1386a broke my “Find all instances” macro

Post by SuperDude »

I have a hotkey/macro that finds all instances of a currently selected file in a Directory Opus Lister. The macro code is:

D:\Everything64\Everything64.exe -s nopath:exact:#quote:#[basename:"%1"#]:

However, when searching for all instances of Everything64.exe, by activating this macro with a hotkey, Build 1386a displays this in the search edit field:

nopath:exact:Everything64.exe&quot:

There is nothing in the Results List. If I delete &quot: from the Search edit field's output string, all instances of Everything64.exe are found and displayed, SOMETIMES. It doesn't work if a filename (including the . extension) is longer than ~16 characters.

The following command does work:

D:\Everything64\Everything64.exe -name-part "%1" -s file:
NotNull
Posts: 5961
Joined: Wed May 24, 2017 9:22 pm

Re: Everything v1.5 Build 1386a broke my “Find all instances” macro

Post by NotNull »

Changes have been made in the Preprocessor. Does the following give the expected results?

Code: Select all

"D:\Everything64\Everything64.exe" -s nopath:exact:[basename:"%1"]
Post Reply