I have been waiting for a long time that Visual Filter takes Tags and Comments columns into account besides the Name column. Now I decided to create a script. If you also miss this feature, use the small script below. Referenced thread:
http://www.xyplorer.com/xyfc/viewtopic. ... =15#p95302
Code: Select all
"Search on NTC"
filter;
$filt = input("Custom Filter on Name or Comment or Tags");
selfilter $filt,,"Name";
selfilter $filt,,"Tags",1;
selfilter $filt,,"Comment",1;
#359;
if (get("CountSelected") == 0) {msg "No match in the folder for ""$filt""!"}
sel 1;
I added the Alt+S shortcut to it in the User Defined Commands.