Skip to content

Commit e863447

Browse files
bors[bot]lnicola
andauthored
Merge #6988
6988: Remove outdated FIXME r=lnicola a=lnicola bors r+ Co-authored-by: Laurențiu Nicola <[email protected]>
2 parents e4f922a + 1da99a7 commit e863447

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

editors/code/src/main.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ let ctx: Ctx | undefined;
1919
const RUST_PROJECT_CONTEXT_NAME = "inRustProject";
2020

2121
export async function activate(context: vscode.ExtensionContext) {
22-
// For some reason vscode not always shows pop-up error notifications
23-
// when an extension fails to activate, so we do it explicitly by ourselves.
24-
// FIXME: remove this bit of code once vscode fixes this issue: https://github.com/microsoft/vscode/issues/101242
22+
// VS Code doesn't show a notification when an extension fails to activate
23+
// so we do it ourselves.
2524
await tryActivate(context).catch(err => {
2625
void vscode.window.showErrorMessage(`Cannot activate rust-analyzer: ${err.message}`);
2726
throw err;

0 commit comments

Comments
 (0)