Quick Find, regex:-like syntax?

Have a suggestion for "Everything"? Please post it here.
Post Reply
therube
Posts: 4610
Joined: Thu Sep 03, 2009 6:48 pm

Quick Find, regex:-like syntax?

Post by therube »

Quick Find, regex:-like syntax (or something simpler)?

FAYT (Find As You Type) starts its find "from the beginning of a name"
So 'red' jumps to r, then re, then red.

Quick Find can also find 'red', but there is no way to do something like "find names that begin with 'red'".
If you could do /red or ^red (with / or ^ meaning the name should begin with 'red'), something like that would work.
As it is "red" finds stuff like:
blue.red.blue, bluered, red.blue, red., red.x
.

Being able to only come up with (jump to); red.blue, red., red.x ... would be nice (in particular when you're not in an alpha sort).
void
Developer
Posts: 15352
Joined: Fri Oct 16, 2009 11:31 pm

Re: Quick Find, regex:-like syntax?

Post by void »

Quick find will look anywhere in the filename for your search.

Quick find does support regex.

Please try the following quick find search:

regex:^red



Support for /red or ^red is a little tricky as / means wildcard * and ^ is a valid filename character.



It's probably easier to use FAYT ?
Are you using F3 to go to the next quick find?
void
Developer
Posts: 15352
Joined: Fri Oct 16, 2009 11:31 pm

Re: Quick Find, regex:-like syntax?

Post by void »

Please try the following quick find:

red*

The wildcard forces whole filename matching.
therube
Posts: 4610
Joined: Thu Sep 03, 2009 6:48 pm

Re: Quick Find, regex:-like syntax?

Post by therube »

red*
That looks like it will do it, thanks :-).
Post Reply