You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
💄 Include file system path in debug mode's URI/link hovers (microsoft#165709)
* 💄 Include file system path in debug mode's URI/link hovers
Signed-off-by: Babak K. Shandiz <[email protected]>
* 💄 Include full text in debug mode's link hovers
Signed-off-by: Babak K. Shandiz <[email protected]>
* 🔨 Make showing link fulltext as an optional parameter
Signed-off-by: Babak K. Shandiz <[email protected]>
* 🖼 Enable showing fulltext of links for debug view expressions
Signed-off-by: Babak K. Shandiz <[email protected]>
Signed-off-by: Babak K. Shandiz <[email protected]>
constfollowLink=this.tunnelService.canTunnel(uri) ? localize('followForwardedLink',"follow link using forwarded port") : localize('followLink',"follow link");
196
-
link.title=platform.isMacintosh ? localize('fileLinkMac',"Cmd + click to {0}",followLink) : localize('fileLink',"Ctrl + click to {0}",followLink);
196
+
link.title=fulltext
197
+
? (platform.isMacintosh ? localize('fileLinkWithPathMac',"Cmd + click to {0}\n{1}",followLink,fulltext) : localize('fileLinkWithPath',"Ctrl + click to {0}\n{1}",followLink,fulltext))
198
+
: (platform.isMacintosh ? localize('fileLinkMac',"Cmd + click to {0}",followLink) : localize('fileLink',"Ctrl + click to {0}",followLink));
0 commit comments