Make sure we dispose of pluginManager

This commit is contained in:
Matt Bierner
2018-11-15 17:59:35 -08:00
parent 0dd2f7487f
commit 07a5118d23

View File

@@ -24,6 +24,7 @@ export function activate(
context: vscode.ExtensionContext
): Api {
const pluginManager = new PluginManager();
context.subscriptions.push(pluginManager);
const commandManager = new CommandManager();
context.subscriptions.push(commandManager);