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 dd149c2 commit 070707dCopy full SHA for 070707d
extensions/markdown-language-features/src/languageFeatures/copyFiles/copyPasteLinks.ts
@@ -40,7 +40,7 @@ class PasteLinkEditProvider implements vscode.DocumentPasteEditProvider {
40
return;
41
}
42
43
- uriEdit.label = pasteEdit.label;
+ uriEdit.label = pasteUrlSetting === PasteUrlAsFormattedLink.Smart ? vscode.l10n.t('Smartly Insert Link') : pasteEdit.label;
44
uriEdit.additionalEdit = pasteEdit.additionalEdits;
45
return uriEdit;
46
0 commit comments