Reputation: 9
Please check the text that shows in picture I dont need that message from VS code.
I want to use the suggestions but not that uselesss text over the code. Its fine that suggestions shows,
SOLUTION : Inside - settings.json
at the top add :
{
"editor.mouseWheelZoom": true,
"editor.parameterHints.enabled": false,
"emmet.includeLanguages": {
"django-html": "html",
},
Mainly This line : "editor.parameterHints.enabled": false,
If its not exists then add , else if this - "editor.parameterHints": false,
exists then replace with this - "editor.parameterHints.enabled": false,
THATS ALL.
Upvotes: 0
Views: 67
Reputation: 1
Go to the VScode settings and in the search bar, type "parameter hints". Look for the setting "Edit in settings.json". In the settings.json file you can then find the "editor.parameterHints.enabled" set it to false, it will look like this:
"editor.parameterHints.enabled": false
you then need to save by pressing ctrl+s, and restart VScode.
Upvotes: -1