!7 static cached LS stdFunctions_idAndName() { ret map(stdFunctions_cached(), func(S name, S snippetID) -> S { snippetID + " - " + name }); } cmodule SFQuickSearch > DynQuickSearch { start { moduleDescForSearch = "Standard Function"; quickSearchParams = new O[] { defaultAction := voidfunc(fS s) enter { dm_hideQuickSearchModules(); dm_openSnippetInEditor(beforeSpace(s)); } }; } afterVisualize { onDoubleClickOrEnterThreaded(list, (VF1) optPar(quickSearchParams, 'defaultAction)); } L calc_impl() { ret scoredSearch_eachTerm(query, stdFunctions_idAndName()); } }