summaryrefslogtreecommitdiff
path: root/modules/launcher/AppList.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-19 14:25:39 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-19 14:25:39 +1000
commitce26c8a75460948bccf412b3c559ea9a5777131f (patch)
tree3ad3aed7243298f27d85f50434f0619e7eb34f3d /modules/launcher/AppList.qml
parentreadme: update config example (diff)
downloadcaelestia-shell-ce26c8a75460948bccf412b3c559ea9a5777131f.tar.gz
caelestia-shell-ce26c8a75460948bccf412b3c559ea9a5777131f.tar.bz2
caelestia-shell-ce26c8a75460948bccf412b3c559ea9a5777131f.zip
feat: fzf-like search instead of fuzzy
Also add license for fuzzysort lib
Diffstat (limited to 'modules/launcher/AppList.qml')
-rw-r--r--modules/launcher/AppList.qml8
1 files changed, 4 insertions, 4 deletions
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 {