From ce26c8a75460948bccf412b3c559ea9a5777131f Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 19 Jul 2025 14:25:39 +1000 Subject: feat: fzf-like search instead of fuzzy Also add license for fuzzysort lib --- modules/launcher/AppList.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/launcher/AppList.qml') diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml index 891c362..857515a 100644 --- a/modules/launcher/AppList.qml +++ b/modules/launcher/AppList.qml @@ -23,14 +23,14 @@ StyledListView { if (isCalc) return [0]; if (isScheme) - return Schemes.fuzzyQuery(text); + return Schemes.query(text); if (isVariant) - return M3Variants.fuzzyQuery(text); + return M3Variants.query(text); if (isAction) - return Actions.fuzzyQuery(text); + return Actions.query(text); if (text.startsWith(Config.launcher.actionPrefix)) text = search.text.slice(Config.launcher.actionPrefix.length); - return Apps.fuzzyQuery(text); + return Apps.query(text); } model: ScriptModel { -- cgit v1.2.3-freya