Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get rid of annoying "newNode: node, offset: number" popup (intellisense?)

When editing javascript with Visual Studio Code I continuously get a useless and obtrusive popup showing some sort of irrelevant method signature

enter image description here

It also won't go away when typing. Even escape won't remove it but clicking in some other code usually does.

My current user config looks as follows

// Place your settings in this file to overwrite the default settings
{
    "python.pythonPath": "/home/ivo/Atom/bin/python",
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "python.unitTest.nosetestsEnabled": true,
    "python.unitTest.nosetestPath": "bin/django",
    "python.unitTest.nosetestArgs": ["test", "apps/"],
    "python.unitTest.unittestEnabled": false,
    "editor.acceptSuggestionOnEnter": false,
    "editor.fontSize": 13,
    "editor.renderControlCharacters": true,
    "editor.useTabStops": false,
    "editor.suggestOnTriggerCharacters": false,
    "editor.wordBasedSuggestions": false,
    "editor.quickSuggestions": false
}
like image 733
Ivo van der Wijk Avatar asked Dec 19 '22 15:12

Ivo van der Wijk


1 Answers

To stop showing the annoying hint popups, open "settings.json" in VSCode: (File -> Preferences -> Settings).

Add the following line to the setting file (including quotes), and save it:

"editor.parameterHints": false
like image 96
Ivo van der Wijk Avatar answered May 19 '23 18:05

Ivo van der Wijk