From d03a13fae957318810b6666efa97b2bbcd1f2a6a Mon Sep 17 00:00:00 2001 From: Sharsie Date: Thu, 3 Jul 2025 20:40:55 +0200 Subject: [PATCH] [vscode_projects:1.10] Fixes duplicated trigger in query auto completion --- vscode_projects/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vscode_projects/__init__.py b/vscode_projects/__init__.py index 9f8690b6..7ed263c9 100644 --- a/vscode_projects/__init__.py +++ b/vscode_projects/__init__.py @@ -8,7 +8,7 @@ from albert import * md_iid = "3.0" -md_version = "1.9" +md_version = "1.10" md_name = "VSCode projects" md_description = "Open VSCode projects" md_url = "https://github.com/albertlauncher/python/tree/master/vscode_projects" @@ -103,7 +103,7 @@ def projectManagerEnabled(self, value): warning( "Project Manager search was enabled, but configuration file was not found") notif = Notification( - title=f"{self.name}", + title=self.name, text=f"Configuration file was not found for the Project Manager extension. Please make sure the extension is installed." ) notif.send() @@ -359,7 +359,7 @@ def _createItem(self, project: Project, query: Query) -> StandardItem: text=project.displayName, subtext=f"{subtext}{project.path}", iconUrls=self.iconUrls, - inputActionText=f"{query.trigger}{project.displayName}", + inputActionText=project.displayName, actions=actions, )