in src/extension.ts [20:25]
async function showPrompt(): Promise<void> {
const answer: string | undefined = await vscode.window.showInformationMessage('Would you like to customize VS Code to behave more like Sublime Text?', 'Yes', 'No');
if (answer && answer === 'Yes') {
start();
}
}