Search found 11 matches

by Marco Polo
Mon May 08, 2023 2:09 pm
Forum: Everything 1.5 Alpha
Topic: [Feature Request] XYplorer Tag Support
Replies: 21
Views: 12887

Re: [Feature Request] XYplorer Tag Support

Thank you Void. Comment and star reading works fine. The Storage parameter is a little difficult to support as Everything doesn't know where the portable XYplorer application is located. Everything will currently always treat the paths as relative to the tags.dat file location. I see no useful scena...
by Marco Polo
Sun May 07, 2023 5:24 pm
Forum: Bug report
Topic: 'tag' bookmarks doesn't work consistently
Replies: 4
Views: 6101

Re: 'tag' bookmarks doesn't work consistently

NotNull wrote: Sun May 07, 2023 2:33 pm Change your bookmark search to:

Code: Select all

search(custom) - tag:find:
(without the <> )
Thank you, NotNull, this variant works as expected.

Code: Select all

search(custom) - tag:find:
macro - tagalias<find>
by Marco Polo
Sun May 07, 2023 12:49 pm
Forum: Bug report
Topic: 'tag' bookmarks doesn't work consistently
Replies: 4
Views: 6101

Re: 'tag' bookmarks doesn't work consistently

Another screenshot. Bookmarked 'tagalias' keyword works good if it is next to real 'tag' keyword (and probably any other 'real' keyword).

Image

One more

Image
by Marco Polo
Sun May 07, 2023 12:36 pm
Forum: Bug report
Topic: 'tag' bookmarks doesn't work consistently
Replies: 4
Views: 6101

'tag' bookmarks doesn't work consistently

I have defined Ctrl-Shift-B bookmark for 'tag' filter like this search(custom) - tag:<find:> macro - tagalias<find> ... all other fields are disabled tagalias:house tagalias:low tagalias:yellow I have strange result if I use those filters in sequence - second, third macro do not remove inappropriate...
by Marco Polo
Thu May 04, 2023 9:11 am
Forum: Everything 1.5 Alpha
Topic: [Feature Request] XYplorer Tag Support
Replies: 21
Views: 12887

Re: [Feature Request] XYplorer Tag Support

Examples of Storage parameter impact Storage: 0 (Absolute paths) C:\mobile\android\F-Droid.apk|0|android,program||5|some text ...|||||||||||||| C:\mobile\sound\wakeup.ogg|0|sound,loud||4|||||||||||||||it is loud, VERY loud R:\stagsi\Stagsi.sqlite|5|library,media,portable||3||||||||||||||| Storage pa...
by Marco Polo
Thu May 04, 2023 8:55 am
Forum: Everything 1.5 Alpha
Topic: [Feature Request] XYplorer Tag Support
Replies: 21
Views: 12887

Re: [Feature Request] XYplorer Tag Support

Everything 1.5.0.1344a also improves handling of XYplorer tags and ", " delimited lists. Many thansk for this improvement. I spent some time playing with XYplorer tag.dat file. The link above to XYplorer forum contains outdated information for file version 3. It has less number of extra f...
by Marco Polo
Wed Apr 26, 2023 1:15 pm
Forum: Everything 1.5 Alpha
Topic: [Feature Request] XYplorer Tag Support
Replies: 21
Views: 12887

Re: [Feature Request] XYplorer Tag Support

Everything 1.5.0.1341a adds XYplorer tag support. Currently, only tag information is supported. Please let me know if you would like to see support for other properties. Support of other properties will be useful feature IMHO. I had some experiments with XYplorer and found out some facts. Everythin...
by Marco Polo
Sun May 29, 2022 8:33 am
Forum: Bug report
Topic: EFU file lists do not work with properties files
Replies: 3
Views: 2784

Re: EFU file lists do not work with properties files

However, when the filelist was opened stand-alone (Menu:File > Open File List), the properties are shown as expected. Thanks, you have helped me very much - this way i see properties in EFU. My first attempts were not successfull because I worked with EFU lists attached in options menu (Menu:Tools ...
by Marco Polo
Tue May 24, 2022 4:55 pm
Forum: Bug report
Topic: EFU file lists do not work with properties files
Replies: 3
Views: 2784

EFU file lists do not work with properties files

Everything build 1.5.0.1314a. Properties are read from CSV and are successfully displayed for files that really exist on HDD but not for files from EFU list. Even in case files in EFU actually point to the same path as 'real' files on disk, existing ones. https://i.postimg.cc/DSNRt5P5/everything-fil...
by Marco Polo
Wed May 18, 2022 6:27 am
Forum: Suggestions
Topic: Long running operation - I don't want to lose them so "easily"
Replies: 6
Views: 4177

Re: Long running operation - I don't want to lose them so "easily"

void wrote: Wed Feb 23, 2022 8:35 am I will consider showing a warning before changing the search after the current results took a long time to populate.
Probably an extra button can be added so that search field just becomes inactive?

btw, /hide_on_close=1 works not always if there were more that 1 search windows opened.
by Marco Polo
Mon May 16, 2022 6:14 pm
Forum: Bug report
Topic: High CPU load when searching for /.+.+aa/ regex
Replies: 5
Views: 10480

Re: High CPU load when searching for /.+.+aa/ regex

path:regex:.aa would produce the same results much faster. Maybe Everything could look at optimizing .+aa to .aa or ^.+aa Although, .aa would affect highlighting. @MrCricket Try non-greedy search - path:regex:.+?aa will have less performance impact. And it will have less highlighting affect - highl...