Visual Filter on Name or Tags or Comments

Discuss and share scripts and script files...
Post Reply
LittleBiG
Posts: 1848
Joined: 08 Apr 2011 12:57
Location: Win10x64

Visual Filter on Name or Tags or Comments

Post by LittleBiG »

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.

Post Reply