Skip to content

Commit 76e0a7a

Browse files
committed
fix #332 Announce when proposed APIs are being used
1 parent 0415088 commit 76e0a7a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/extension.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,11 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
536536
: null,
537537
].filter(notNull);
538538

539+
if (proposed.length > 0) {
540+
outputChannel.appendLine(`${extensionId} version ${extensionVersion} activating with proposed APIs available.\n`);
541+
outputChannel.show(true);
542+
}
543+
539544
context.subscriptions.push(
540545
reporter,
541546
workspace.onDidChangeTextDocument((event) => {

0 commit comments

Comments
 (0)