Or at least something doesn't seem right.
Neither, Ctrl+R nor regex:
regex:^Everything
Expected: Find file names starting with Everything
Results: Nothing
Yet something like, ^.*$ (find all files, kind of thing) does work.
As does: ^.*thing.exe$ (find filenames ending with thing.exe").
741b
---
Ah, I see what it is.
Match Path.
If Match Path is enabled, ^ anchors to the start of the Path rather then the Name, so you would need something like, oh, not sure,
Code: Select all
^.:\\.*\\everything
-reduced-
^.*\\everything
And if you append \. that gets rid of (most of) the directory parts.
Code: Select all
^.:\\.*\\everything\.