-
Notifications
You must be signed in to change notification settings - Fork 796
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VS: Assorted QuickInfo improvements #14933
Conversation
How would the find usages on link click work? |
Co-authored-by: Adam Boniecki <20281641+abonie@users.noreply.github.com>
Ah, I thought I saw this working in a C# project, but can't get it to work now. Yes it just launched the panel for the symbol. |
Co-authored-by: Adam Boniecki <20281641+abonie@users.noreply.github.com>
Replace awful ASCII art separator with something more subtle and align icon to top:
Use the built-in nav link functionality that VS now provides, instead of custom. Restore the little tooltip with file name that once was there IIRC.
That was a low hanging fruit. Here are a few more involved things that come to my mind to do as a follow up:
ToolTipElement
the service provides.JoinableTaskFactory
and allow user to cancel the hyperlink navigation: There are two codepaths in link navigation, one is instant as it just goes to the range of symbol, the other one is smart but slower as it looks up the implementation. Provide an option to fallback to fast track when the user cancels.