XYAHKLiveFilter - livefilter the filelist

Discuss and share scripts and script files...
bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: XYAHKLiveFilter - livefilter the filelist

Post by bdeshi »

released 5.0.1b. This will fix that issue (and many others :wink: )

The bug simply shows my peerless level of attention. I declared a variable with one name, and tried using it with another! :mrgreen:

(Thanks for reporting btw!)
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

klownboy
Posts: 4397
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.7171 at 100% 2560x1440

Re: XYAHKLiveFilter - livefilter the filelist

Post by klownboy »

That was fast...all set. Thanks Sammay. :)

phatmankerr
Posts: 186
Joined: 26 Dec 2005 19:35

Re: XYAHKLiveFilter - livefilter the filelist

Post by phatmankerr »

Sammay you are a god!!!

Just found your post, have been waiting for live filter in XY forever! Just found your implementation today.

This is truly useful. But...you knew there had to be a 'but' right? Is there any way to change spaces automatically to * so u can search phrases?

By the way if you took donations, i would donate - this was my number one feature missing from the otherwise excellent XY.

Andy

:D

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: XYAHKLiveFilter - livefilter the filelist

Post by bdeshi »

Thank you, thank you! Image

phatmankerr wrote:Is there any way to change spaces automatically to * so u can search phrases?
Uhh, I want to keep it as close to the vanilla VisualFilter behavior as possible (because it is in fact just a wrapper around the builtin visual filter).

You could just type that * instead of spaces you know. :kidding:
Or try regex filters. Type

Code: Select all

>phrase1|phrase2
Or,
>[^\d\w](phrase1|phrase2)[^\d\w]
which will find all items with "phrase1" or "phrase2" in them. The second pattern skips given phrases that are part of other words. (The > activates regexp mode. Also you'll want to suspend the filter's livemode (ALT+P) )

More ideas, and syntax:

Code: Select all

::help 'idh_scripting_comref.htm#idh_sc_filter';
::help 'idh_visualfilters.htm';
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

tiago
Posts: 589
Joined: 14 Feb 2011 21:41

Re: XYAHKLiveFilter - livefilter the filelist

Post by tiago »

phatmankerr wrote:Sammay you are a god!!!
As sacred as a cow in a McDonald's drive-thru, that is... (sorry, I just had to be infamous here! :mrgreen: )

But Unrealistic godlike for sure!!! Thanks much for this little giant XYplorer feature preview!!!
Power-hungry user!!!

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: XYAHKLiveFilter - livefilter the filelist

Post by bdeshi »

:P :cup:
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

Post Reply