Page 1 of 1

Searching the Tabs

Posted: 10 Aug 2018 15:34
by DixieCup48
Does an easy way exist to do a Quick Search through all of the open Tabs simultaneously?

Re: Searching the Tabs

Posted: 10 Aug 2018 15:57
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");