Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to edit tooltip opacity in vscode? (how to change the intellisense suggestions transparency)

I am a beginner in vscode. When I write code the tooltip annoys me, because I use divided screen in macOS so I want to make the tooltips semi-transparent without press ctrl like this image:

Description

like image 627
Jaycee Avatar asked Mar 14 '20 07:03

Jaycee


People also ask

How do I change transparency in VS Code?

Press ctrl+alt+z to increase the transparency, ctrl+alt+c to decrease.

How do I use VS Code IntelliSense?

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character (such as the dot character (.) in JavaScript). Tip: The suggestions widget supports CamelCase filtering, meaning you can type the letters which are upper cased in a method name to limit the suggestions.

How do I hide suggestions on VS Code?

Type “editor. hover. enable” into the search field then check/uncheck the checkbox associated with “Controls whether the hover is shown.” to enable/disable the suggestion tooltip on hover.

How do you turn on suggestions in VS Code?

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character (such as the dot character (.) in JavaScript).

How to change the opacity of Visual Studio Code?

You may need to restart the code editor after the installation, once the application starts again, you will be able to change the opacity of Visual Studio Code by simply pressing the shortcuts CTRL + ALT + Z to increase the transparency or CTRL + ALT + C to decrease the transparency level. B. Using WinOpacity

How to fix IntelliSense not working in Visual Studio Code?

Here are the general solution you have to apply for fixing the IntelliSense issue with visual studio code. When VSCode does not show any IntelliSense support, you can trigger Intellisense by typing Ctrl + Space or the dot character (.) which may show IntelliSense.

How do I enable transparent mode in Visual Studio code (VSC)?

This extension allows VSC to operate with a transparent window in Windows 10. Open Visual Studio Code (VSC). In the right-hand vertical menu, select Extensions (5th icon down below Explorer, Search, Source Control, and Debug). The Extensions manager will open.

What is Visual Studio Code tips and tricks?

"Tips and Tricks" lets you jump right in and learn how to be productive with Visual Studio Code. You'll become familiar with its powerful editing, code intelligence, and source code control features and learn useful keyboard shortcuts.


2 Answers

Try this colorCustomization in your settings:

"workbench.colorCustomizations": {

  "editorSuggestWidget.background": "#ff000060"
}

The last two digits, in this case 60 are opacity. There a few more editorSuggestWidget options to change too.

like image 167
Mark Avatar answered Oct 22 '22 13:10

Mark


https://wannabedev.tistory.com/37

I found it, here is a screenshot:

enter image description here

like image 40
Jaycee Avatar answered Oct 22 '22 13:10

Jaycee