If you are experiencing problems with "Everything", post here for assistance.
galen104
Posts: 2 Joined: Mon Apr 26, 2021 10:07 am
Post
by galen104 » Mon Apr 26, 2021 10:13 am
I have several markdown file with some tag information saved in the filename inside the square brackets. Here an example:
I made a macro to filter only markdown files (based on extension) and to list only files.
I want to add the possibility to search only for the tags inside the square brackets, is this possibile?
Thanks.
void
Developer
Posts: 16678 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Mon Apr 26, 2021 11:05 am
Please try creating the following filter:
In Everything , from the Search menu, click Add to filters... .
Change the Name to: md tags
Change the Search to: *[*search:*]*.md
Change the Macro to: mdtag<search>
Click OK .
Use the following search to find a 'tag' in the md filename:
mdtag:tag1 mdtag:tag2
This search is expanded to:
*[*tag1*]*.md *[*tag2*]*.md
galen104
Posts: 2 Joined: Mon Apr 26, 2021 10:07 am
Post
by galen104 » Mon Apr 26, 2021 11:13 am
Thanks, works great!