Closed
Description
Testing #174700 in a simple test extension.
I can click on the link (which I've named link
below), but it isn't underlined:
The toast displays the hyperlink in blue, but there is also no underline (though I think that's expected here):
This is the piece of code I added:
const result = vscode.window.showInputBox({
value: 'abcdef',
valueSelection: [2, 4],
placeHolder: 'For example: fedcba. But not: 123',
prompt: 'Please enter a value and [link](https://github.com)',
validateInput: text => {
vscode.window.showInformationMessage(`Validating [link](https://github.com): ${text}`);
return text === '123' ? 'Not 123!' : null;
}
});
vscode.window.showInformationMessage(`Got: ${result}`);