Ashiq
Ashiq

Reputation: 9

How to turn off this suggestion text from VS code when type bracket or comma after type, print or any statement

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

Answers (1)

Borealis
Borealis

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

Related Questions