-
Notifications
You must be signed in to change notification settings - Fork 676
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
Two tooltips appear on top of each other during code completion #6501
Comments
Note - this is due to the location of the code and window size. The signature help window is supposed to appear above the line, while the completion list appears below. However if there is not enough space in the text editor window above, they will appear overlapped. This behavior is defined by VSCode. The most we could do on the extension side is have an option to disable completion in argument lists, which I'm not sure we want to do. |
@dibarbet The argument list is the one that should be shown. The other one should NOT be shown in this context, just like how it wasn't previously. |
This is what it looks like in v1.26.0: Untitled.Project.mp4 |
This is still happening. No matter of the code location and where they're rendered, unless completion you need is for Are we he minority here with @aradalvand and think this behavior is counterproductive? 😄 If so, is there a setting for this that I didn't find? |
Option This is not released yet, but should be part of next weeks prerelease update. Will post here once it is available. |
This is available in 2.45.17 prerelease. Unchecking |
See the following video — when you type the opening parenthesis after the
.Add
method, previously you'd just see the method arguments in the code completion tooltip as expected, but now another useless/irrelevant window appears on top of that and covers it, so you have to pressEsc
to get rid of it. This happens constantly and is extremely annoying.Untitled.Project.mp4
Environment data
VS Code version: 1.83.0 — e7e037083ff4455cf320e344325dacb480062c3c
C# Extension version: v2.5.30
The text was updated successfully, but these errors were encountered: