-
Notifications
You must be signed in to change notification settings - Fork 45
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
Reduce amount of information shown in hovers #227
Comments
@alexdima this has been implemented for a while, the vscode team just hasn't used the existing feature. Please refer to the |
Oh cool, thanks a lot for the info! I opened microsoft/vscode-python#19926 to fix it in the Python extension side. |
@pappasam could keyword hover be off by default? Advanced Python users know their keywords, beginner Python users won't understand these hovers. |
@r3m0t it can be, and this is certainly something an individual language client (eg, vscode-client) can configure as its default. Hence the initialization option we already provide; individual language clients are free to use that however they want. That said, for simplicity's sake in this codebase, I don't want to default it to off on the server side. |
Thank you very much for pointing us in the right direction! I'll close this out since the setting already exists. |
👋 Hi, coming here from microsoft/vscode#159247
It looks like the hovers returned by jedi are sometimes super verbose and detailed. VS Code users are now asking us to better handle very large hovers. The problem is that on our side, we can truncate the markdown after some amount of characters, but that would give IMHO also a bad user experience.
Would it please be possible to be more succint in the hovers (e.g. the language specification part might be omitted or shown only after enabling a setting).
The text was updated successfully, but these errors were encountered: