From 102abf38e136b6e203b8cf47a75aceae2cf1c35b Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 14 May 2023 17:57:22 +0100 Subject: [PATCH] Provide accurate values for relevance --- krunner_vscode/__main__.py | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/krunner_vscode/__main__.py b/krunner_vscode/__main__.py index e4de460..ab944df 100755 --- a/krunner_vscode/__main__.py +++ b/krunner_vscode/__main__.py @@ -1,3 +1,4 @@ +import difflib import json import os import sqlite3 @@ -31,6 +32,21 @@ class Match(NamedTuple): properties: dict +def get_matches(paths, query): + """ + Equivalent to `difflib.get_close_matches`, but returning the ratio too + """ + matches = [] + s = difflib.SequenceMatcher() + s.set_seq2(query) + + for path in paths: + s.set_seq1(path) + matches.append((s.ratio(), path)) + + return matches + + # Read path_list from database def get_path_list(): paths = set() @@ -72,17 +88,18 @@ class Runner(dbus.service.Object): @dbus.service.method(iface, in_signature="s", out_signature="a(sssida{sv})") def Match(self, query: str): # data, display text, icon, type (Plasma::QueryType), relevance (0-1), properties (subtext, category and urls) + matches = get_matches(get_path_list(), query) + return [ Match( path, Path(path).name, "com.visualstudio.code.oss", 100, - 1.0, + ratio, {"subtext": path}, ) - for path in get_path_list() - if query.lower() in Path(path).name.lower() + for ratio, path in matches ] @dbus.service.method(iface, out_signature="a(sss)")