From 9261c961d26604a44fa02f14fd41f97724728a9d Mon Sep 17 00:00:00 2001 From: Ian Bull Date: Tue, 30 Jan 2024 16:58:28 -0800 Subject: [PATCH] feat: show a modal dialog after workspace init (#1060) --- client/src/commands.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/commands.ts b/client/src/commands.ts index 52b52124..38227c67 100644 --- a/client/src/commands.ts +++ b/client/src/commands.ts @@ -417,6 +417,7 @@ export function enable( return async () => { const config = vscode.workspace.getConfiguration(EXTENSION_NS); await config.update("enable", true); + vscode.window.showInformationMessage("Deno workspace initialized."); }; }