Add shortcuts for "startwith" and "endwith" functions
Add shortcuts for "startwith" and "endwith" functions
The symbols ^ and $ cannot be used in filenames anyway, so why not use them as a shortcut? E.g. "test .txt$" would be internally equivalent to "test endwith:.txt".
Re: Add shortcuts for "startwith" and "endwith" functions
Both symbols are allowed and work fine in Windows filenames.
Re: Add shortcuts for "startwith" and "endwith" functions
I'll consider adding optional ^ and $ shortcuts for startwith:/endwith:
Thanks for the suggestion.
Currently, you could try searching for:
*.txt
or, enable regex from the Search menu and search for:
\.txt$
Thanks for the suggestion.
Currently, you could try searching for:
*.txt
or, enable regex from the Search menu and search for:
\.txt$
Re: Add shortcuts for "startwith" and "endwith" functions
FWIW, I use this
Filter definition:
Name:
Search:
Macro:
Filters can be configured under Menu:Search > Organize Filters
Filter definition:
Name:
^
Search:
startwith:myquery:
Macro:
^<myquery>
Filters can be configured under Menu:Search > Organize Filters
Re: Add shortcuts for "startwith" and "endwith" functions
Oooh, it works! Thanks a lot!