How do I get rid of this popup in VSCode?

This small popup appears when I start introducing new properties into objects and, it would seem, all the time. This keeps me from moving up / down the lines because the up / down arrows scroll the contents of the window. I'm sorry this sounds like a version of VCLode Clippy from MS Word!

enter image description here

I tried the following user settings to no avail

// Place your settings in this file to overwrite the default settings
{
  "editor.referenceInfos": false,
  "editor.suggestOnTriggerCharacters": false,
  "editor.autoClosingBrackets": false,
  "editor.quickSuggestions": false
}
+4
source share
2 answers

This is intellisense / refactoring support. Besides the user preferences you mentioned, this is part of the language support.

You can:

  • Switch to another language setting
  • , intellisense, , , vscode, .
  • ESC /,
+2

, β†’ :

"editor.parameterHints": false
+2

Source: https://habr.com/ru/post/1627602/


All Articles