Searching the Tabs

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
DixieCup48
Posts: 111
Joined: 30 Jan 2018 14:58

Searching the Tabs

Post by DixieCup48 »

Does an easy way exist to do a Quick Search through all of the open Tabs simultaneously?

highend
Posts: 13327
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Searching the Tabs

Post by highend »

A simple script could do that...

Code: Select all

    $input = input("QuickSearch...");
    if (!$input) { status "No valid input, aborted!", "8B4513", "stop"; end true; }
    $items = quicksearch($input, get("Tabs"));
    if (!$items) { status "Sorry, no items found!", "8B4513", "stop"; end true; }
    paperfolder("QuickSearch_Result", $items, , "nl");
One of my scripts helped you out? Please donate via Paypal

Post Reply