From 1da99a79d9c2344175869644c1064049e7655281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Mon, 21 Dec 2020 20:36:58 +0200 Subject: Remove outdated FIXME --- editors/code/src/main.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 4eaaed62b..a763194d6 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -19,9 +19,8 @@ let ctx: Ctx | undefined; const RUST_PROJECT_CONTEXT_NAME = "inRustProject"; export async function activate(context: vscode.ExtensionContext) { - // For some reason vscode not always shows pop-up error notifications - // when an extension fails to activate, so we do it explicitly by ourselves. - // FIXME: remove this bit of code once vscode fixes this issue: https://github.com/microsoft/vscode/issues/101242 + // VS Code doesn't show a notification when an extension fails to activate + // so we do it ourselves. await tryActivate(context).catch(err => { void vscode.window.showErrorMessage(`Cannot activate rust-analyzer: ${err.message}`); throw err; -- cgit v1.2.3