diff --git a/vscode_projects/__init__.py b/vscode_projects/__init__.py index 9f8690b..7ed263c 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, )