Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 0637e21

Browse files
committed
Call stop from deactivate
1 parent 875ec5b commit 0637e21

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ async function startLanguageClient(context: ExtensionContext) {
180180

181181
const promise = progressCounter();
182182

183-
184183
const disposable = lc.start();
185184
context.subscriptions.push(disposable);
186185

@@ -190,6 +189,8 @@ async function startLanguageClient(context: ExtensionContext) {
190189
export function deactivate(): Promise<void> {
191190
deactivateTaskProvider();
192191

192+
lc.stop();
193+
193194
return Promise.resolve();
194195
}
195196

0 commit comments

Comments
 (0)