Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit ab649e7

Browse files
authored
[vscode_projects:1.10] Fixes duplicated trigger in query auto completion (#224)
1 parent cb6326c commit ab649e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vscode_projects/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from albert import *
99

1010
md_iid = "3.0"
11-
md_version = "1.9"
11+
md_version = "1.10"
1212
md_name = "VSCode projects"
1313
md_description = "Open VSCode projects"
1414
md_url = "https://github.com/albertlauncher/python/tree/master/vscode_projects"
@@ -103,7 +103,7 @@ def projectManagerEnabled(self, value):
103103
warning(
104104
"Project Manager search was enabled, but configuration file was not found")
105105
notif = Notification(
106-
title=f"{self.name}",
106+
title=self.name,
107107
text=f"Configuration file was not found for the Project Manager extension. Please make sure the extension is installed."
108108
)
109109
notif.send()
@@ -359,7 +359,7 @@ def _createItem(self, project: Project, query: Query) -> StandardItem:
359359
text=project.displayName,
360360
subtext=f"{subtext}{project.path}",
361361
iconUrls=self.iconUrls,
362-
inputActionText=f"{query.trigger}{project.displayName}",
362+
inputActionText=project.displayName,
363363
actions=actions,
364364
)
365365

0 commit comments

Comments
 (0)