2

While I'm typing, I constantly get these pop-up explanation windows which are extremely annoying. How can I disable it?

screenshot

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56
CrimsonDay
  • 55
  • 9

2 Answers2

1

Simply press ctrl+space key to enable or disable this suggestion.

You can also follow this question

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56
  • 4
    "editor.parameterHints": false This code block provided in the question you mentioned did the trick in the corresponding language's field. Thanks... – CrimsonDay Oct 25 '21 at 09:52
  • Not sure why this is the accepted answer and Lars' answer isn't getting some love. The answer here is not an answer to the question. – Midiman Aug 03 '23 at 11:12
1

This adjust did the trick

"editor.quickSuggestions": {
        "other": false,
  },
  • This should be the accepted answer. A slight tweak as of 2023, the setting is "off" rather than false. – Midiman Aug 03 '23 at 11:13