in extension.js [65:80]
showMessage() {
const answer = showInformationMessage(this.messages.prompt, this.messages.yes, this.messages.no, this.messages.learnMore);
answer.then((selectedOption) => {
if (selectedOption === this.messages.yes) {
this.updateSetting.persist();
updateSettings(this.editorConfig, versionThreeSettings);
showInformationMessage(this.messages.change);
} else if (selectedOption === this.messages.no) {
this.updateSetting.persist();
showInformationMessage(this.messages.noChange);
} else if (selectedOption === this.messages.learnMore) {
vscode.commands.executeCommand('vscode.open', vscode.Uri.parse('https://marketplace.visualstudio.com/items?itemName=ms-vscode.atom-keybindings'));
}
});
}