Page 6 of 6
Re: XYAHKLiveFilter - livefilter the filelist
Posted: 29 Feb 2016 17:52
by bdeshi
released 5.0.1b. This will fix that issue
(and many others
)
The bug simply shows my peerless level of attention. I declared a variable with one name, and tried using it with another!
(Thanks for reporting btw!)
Re: XYAHKLiveFilter - livefilter the filelist
Posted: 29 Feb 2016 18:22
by klownboy
That was fast...all set. Thanks Sammay.

Re: XYAHKLiveFilter - livefilter the filelist
Posted: 09 Mar 2016 20:21
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

Re: XYAHKLiveFilter - livefilter the filelist
Posted: 10 Mar 2016 05:57
by bdeshi
Thank you, thank you!
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.
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';
Re: XYAHKLiveFilter - livefilter the filelist
Posted: 28 Apr 2016 15:22
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!

)
But Unrealistic godlike for sure!!! Thanks much for this little giant XYplorer feature preview!!!
Re: XYAHKLiveFilter - livefilter the filelist
Posted: 28 Apr 2016 17:33
by bdeshi