We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2363668 commit 2a72cf7Copy full SHA for 2a72cf7
extensions/typescript-language-features/src/languageFeatures/tsconfig.ts
@@ -58,10 +58,12 @@ class TsconfigLinkProvider implements vscode.DocumentLinkProvider {
58
resourceUri: document.uri,
59
extendsValue: extendsValue
60
};
61
- return new vscode.DocumentLink(
+
62
+ const link = new vscode.DocumentLink(
63
this.getRange(document, extendsNode),
- vscode.Uri.parse(`command:${openExtendsLinkCommandId}?${JSON.stringify(args)}`)
64
- );
+ vscode.Uri.parse(`command:${openExtendsLinkCommandId}?${JSON.stringify(args)}`));
65
+ link.tooltip = localize('documentLink.tooltip', 'Follow link');
66
+ return link;
67
}
68
69
private getFilesLinks(document: vscode.TextDocument, root: jsonc.Node) {
0 commit comments