Home > Mobile >  How can I remove the pop up information window for Python code in VS Code
How can I remove the pop up information window for Python code in VS Code

Time:04-07

weird pop up window with Python code in VS Code

I am new to learning Python and use VS Code to do so. Everything works fine but I get these weird information pop up windows when I type some code. I have no idea what they are and the information shown makes no sense to me. I already tried turning of the suggestions in the preferences but it didn't change anything. Can I remove this and if so: How should I do this?

CodePudding user response:

This is possible, just open up settings with ⌘ , and add this:

{
    "editor.quickSuggestions": false
}

CodePudding user response:

I don't think we need to turn off IntelliSense completely like the above answer. After all, IntelliSense can make our work more convenient in use. All we have to do is turn off the parameterInfo. You can add the following contents to the setting.json

    "editor.quickSuggestions": {
    "other": true,
    "comments": false,
    "strings": false
},
"editor.parameterHints.enabled": false,
  • Related