6

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

Mark
  • 143,421
  • 24
  • 428
  • 436
Jaycee
  • 89
  • 2

3 Answers3

7

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.

Mark
  • 143,421
  • 24
  • 428
  • 436
2

https://wannabedev.tistory.com/37

I found it, here is a screenshot:

enter image description here

halfer
  • 19,824
  • 17
  • 99
  • 186
Jaycee
  • 89
  • 2
  • 1
    That's great - looks like my answer to your question was correct. It would be encouraging if you accepted the answer. Thanks. – Mark Mar 15 '20 at 15:44
0

Unfortunately, that's a visual studio feature not yet available in visual studio code.

At present, the only option is to disable the pop-up altogether, in which case you don't get the hinting, which is not ideal.

There are a lot of threads on GitHub about the position and opacity of the tool tip (search terms like 'tooltip intellisense position' you'll find a bunch). You can add your voice there.

ultraGentle
  • 5,084
  • 1
  • 19
  • 45