Is it possible to show clickable links in the tooltips provided by Intellisense completion lists? I have been using HtmlContentProvider to provide the tooltip content but could not find a way to add clickable links.
Is it possible to show clickable links in the tooltips provided by Intellisense completion lists? I have been using HtmlContentProvider to provide the tooltip content but could not find a way to add clickable links.
Hi Tobias,
You should be able to use syntax in a HtmlContentProvider for the description tips like this:
<a href=\"test://foo.bar\">
Then you could handle the CompletionSession.RequestNavigate event to process clicks on that link.
Please log in to a validated account to post comments.