'Vs Code Small Guide
Solution 1:[1]
These are called Parameter Hints (and are showing you the parameters for the function you're calling). You can disable them with this VS Code setting:
Solution 2:[2]
You can close quick suggestions by editing settings.json. To edit settings.json go to Preferences->Settings page (Shortcut: Cmd + Shift + P and type settings.json)
Then add the following code (or edit if there is 'editor.quickSuggestions' key in the file) to close quick suggestions.
"editor.quickSuggestions": {
"comments": false,
"other": true,
"strings": false
},
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Danny Tuppeny |
Solution 2 | anilcngz |