We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988db2f commit 7c8d388Copy full SHA for 7c8d388
package.json
@@ -76,7 +76,8 @@
76
"explorer": [
77
{
78
"id": "javaDependencyExplorer",
79
- "name": "Java Dependencies"
+ "name": "Java Dependencies",
80
+ "when": "extensionActivated"
81
}
82
]
83
src/extension.ts
@@ -11,6 +11,9 @@ import { DependencyExplorer } from "./views/depedencyExplorer";
11
12
export function activate(context: ExtensionContext) {
13
Telemetry.sendEvent("activateExtension", {});
14
+
15
+ commands.executeCommand("setContext", "extensionActivated", true);
16
17
Services.initialize(context);
18
Settings.initialize(context);
19
0 commit comments