vscode: add comment on possible UnhandledPromise rejection error

This commit is contained in:
Veetaha 2020-02-08 21:38:29 +02:00
parent 32fc890de8
commit 31ae646448

View File

@ -27,7 +27,9 @@ export function activateInlayHints(ctx: Ctx) {
ctx.subscriptions
);
ctx.onDidRestart(_ => hintsUpdater.setEnabled(ctx.config.displayInlayHints));
// We pass async function though it will not be awaited when called,
// thus Promise rejections won't be handled, but this should never throw in fact...
ctx.onDidRestart(async _ => hintsUpdater.setEnabled(ctx.config.displayInlayHints));
}
interface InlayHintsParams {