How to disable function documentation pop-up #6235
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
We have something very similar tracked in #4109 and honestly the experience is quite bad on Windows, even worse than macOS. These popups are called "hover" and as a workaround until we figure out these gigantic disruptive hovers, look for these settings and either make the timeout longer or try turning off altogether: ![]() Please let us know if you are not able to use these settings to mitigate this problem! |
Beta Was this translation helpful? Give feedback.
-
Thanks for the response! Good to know "hover" is the keyword. Unfortunately, as far as I can tell, these hover options don't stop the gigantic hovers from appearing. I would expect this to be the main option: "editor.hover.enabled": false But that doesn't seem to stop them. I also tried throwing the kitchen sink at it: "editor.hover.enabled": false,
"workbench.hover.delay": 15000,
"accessibility.verbosity.hover": false,
"editor.hover.delay": 3000,
"editor.hover.hidingDelay": 3000,
"editor.hover.sticky": false, but no luck as far as I can tell (in the editor or the console). Good to know it's on the team's radar. I'll follow that issue. |
Beta Was this translation helpful? Give feedback.
I just played around with this a bit, and I think that possibly you have by accident clicked somewhere that makes Positron think you always want these.
If I type
plot
and wait a sec, I see this set of suggestions; note the arrow here on the line I have highlighted:If I click on that arrow, I get the giant function hover help, like this:
And now I see the giant hover help all the time for all suggestions!!! 😱 (I only discovered this behavior just now.)
If while I have one of these up, I then close the giant function hover help:
Then afterwards they don't show up anymore. I think this behavior is persistent but toggles on/off depending on if you have clicked on that line vs. closed the …