Home > Net >  How to disable hints while typing on vscode
How to disable hints while typing on vscode

Time:10-25

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

screenshot

CodePudding user response:

Open settings.json and add these lines

"editor.quickSuggestions": {
  "other": false,
  "comments": false,
  "strings": false
}

CodePudding user response:

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

You can also follow this question

  • Related