How do I disable the tooltip in VS Code that shows function parameter descriptions and overloads (parameter hints)?
I have following settings.json: “editor.quickSuggestions”: false, “editor.suggestOnTriggerCharacters”: false, “editor.wordBasedSuggestions”: false, “editor.quickSuggestionsDelay”: 1000000 but despite that, this code suggestions / tooltip / widget displays immediately after I write the code like this (JavaScript): Other settings in settings.json are adopted properly, e.g. “editor.fontSize”: 17. Here is documentation for the Visual Studio Code IntelliSense where I found the … Read more