Home > Software engineering >  Getting rid of weird box VSC
Getting rid of weird box VSC

Time:11-17

Box

How do I disable this setting? I don't even know what to call it.

Found a fix: It's called "parameter hints" shift cmd/ctrl space to disable.

CodePudding user response:

You can add a preference to your settings.json to not show it automatically while typing:

"editor.parameterHints.enabled": false

You can also do it on a per-language basis if instead of to the top level object, you add it under a specific language:

"[python]": {
  "editor.parameterHints.enabled": false
}
  • Related