extensions: Add "Debug Adapters" category to the extension store (#32845)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-06-17 12:09:08 +02:00 committed by GitHub
parent b13144eb1f
commit 6ad9a66cf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 46 additions and 9 deletions

View file

@ -152,6 +152,10 @@ fn extension_provides(manifest: &ExtensionManifest) -> BTreeSet<ExtensionProvide
provides.insert(ExtensionProvides::Snippets);
}
if !manifest.debug_adapters.is_empty() {
provides.insert(ExtensionProvides::DebugAdapters);
}
provides
}