-
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 opacity/transparency setting for intellisense suggestions popup #22439
Comments
cc @stevencl |
A good solution for this would be to press Ctrl when the IntelliSense popup is opened to make it transparent. If i remember correctly Visual Studio also does this. It is a small thing but i had issues with the popup covering code i needed a lot of times and this feature would make coding a little more smooth. |
@SonnyBrooks No progress on this yet. But PRs are welcome. If anyone is interested, the place to look at is the suggestWidget |
For anyone looking into this - You can add code in the You can change the suggestWidget's opacity by using the following sample code: You'll probably need to add a settings variable so users can customize opacity of the suggestWidget to their liking. I haven't had the chance to hunt down how to do that yet. Thank you @ramya-rao-a for your guidance! |
@joaomoreno If this feature is indeed driven by settings, would you prefer a single setting to drive the suggest, hover and signature help widget? I cant imagine someone wanting different opacities for these 3 widgets |
@ramya-rao-a I think a common setting would make more sense. 👍 |
Great insight! I'll dig into the code to see how to make a common setting. Do you have any recommendations on where to start my journey? |
@SonnyBrooks For the auto-completion, the place to look at is the suggestWidget Take Then, you can use the same setting in ParameterHintsWidget and HoverWidget |
@GustavoASC not seeing it anywhere. |
@Rysher It's partially available on GUI settings menu and is documented here. You can configure a string representing the RGB and the Alpha value which indicates the opacity/transparency over the image. The Alpha is defined by the last two characters on the string.
Here is a GIF showing how to change this value: Hope it helps! 😃 |
@GustavoASC YES!!!! FIANLLY! thank you so much! |
@GustavoASC I would only suggest (pun intended ^_^ ) that a GUI menu option be added for this. I don't know how many people are aware of your JSON naming-scheme or even that a web page listing all of this (like the link you provided in your initial comment) even exists...aside from this - as far as I'm concenred you can close this thread :) |
Suggest widget would need to show either above or below, thus hiding some code. |
I could not find any settings relating to it, and no extension adding ability to tweak it, so a built in ability to tweak the pop-up window's opacity will be much appreciated.
if you ask "what is the point?": the pop up sometimes get's in the way of adjacent code which i need to see even when a popup is being displayed, this adjacent code might be above, below or in the same line in which i'm writing so adjusting the pop-up's position or delay will not suffice.
thank you!
The text was updated successfully, but these errors were encountered: