-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Add a setting to always enable the regular hover when debugging #47466
Comments
@guillaumejenkins just to check if this solution would work for the live share scenario, or you need a more fine grained solution? As far as I understood you want to show the debug hover and all the other hovers (inlcuding live share) while debugging. If that is not your scenario please let me know |
The desire was to make Might I suggest making it an enum setting instead of a boolean? Something like: That way, if Live Share is going to override the setting, it can at least make the experience as non-intrusive as possible by only enabling one additional type of hovers instead of the full IntelliSense, which might get in the way while debugging. |
@guillaumejenkins thanks for the suggestion however we do not differentiate hovers in the editor API. Thus the debug framework can not tell the editor to only show hovers of a certain type. Only the debug hover and everything else. |
Sounds good |
The proposal with hoverProvider is much better and is the right way to fix Name Tooltips during debugging. You can close this (unless it still makes sense outside of LiveShare)! |
@guillaumejenkins Great, thanks. Closing |
Currently when debugging only the value hover is shown. We should provide a setting debug.showRegularHover which by default would be false.
The text was updated successfully, but these errors were encountered: