Within my Information Box, there is a button that I want to click and have it navigate to a specific website. However, as a newcomer to TypeScript and extension development, I am unsure of how to achieve this using 'vscode.window.showInformationMessage'.
vscode.window
.showInformationMessage("Click for more Info","Go to Help")
.then(selection => {
console.log(selection);
});
Currently, when I click the button labeled 'Go to Help', it only prints in the debug console. What I actually want is for the button to direct me to a particular URL (e.g., ) upon clicking. Any assistance on achieving this desired outcome would be greatly appreciated since I lack the knowledge on how to proceed.