This commit is contained in:
Jackson Kearl 2021-07-13 17:10:29 -07:00
parent aaad870bb0
commit 1fa030e2ec
No known key found for this signature in database
GPG key ID: DA09A59C409FC400

View file

@ -532,6 +532,13 @@ export class GettingStartedPage extends EditorPane {
}
}
}));
this.stepDisposables.add(webview.onDidClickLink(link => {
if (matchesScheme(link, Schemas.https) || matchesScheme(link, Schemas.http) || (matchesScheme(link, Schemas.command))) {
this.openerService.open(link, { allowCommands: true });
}
}));
}
else if (stepToExpand.media.type === 'markdown') {