如何摆脱恼人的"newNode:node,offset:number"弹出窗口(intellisense?)

Ivo*_*ijk 4 visual-studio-code

当使用Visual Studio Code编辑javascript时,我不断得到一个无用且突兀的弹出窗口,显示某种不相关的方法签名

在此输入图像描述

键入时也不会消失.即使转义也不会删除它,但通常会点击其他代码.

我当前的用户配置如下所示

// 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
}
Run Code Online (Sandbox Code Playgroud)

Ivo*_*ijk 11

要停止显示烦人的提示弹出窗口,请在VSCode中打开"settings.json":(文件 - >首选项 - >设置).

将以下行添加到设置文件(包括引号),并保存:

"editor.parameterHints": false
Run Code Online (Sandbox Code Playgroud)