Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions vscode_projects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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()
Expand Down Expand Up @@ -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,
)

Expand Down