如何摆脱恼人的" newNode:node,offset:number" popup(intellisense?)

时间:2016-07-14 15:13:29

标签: visual-studio-code

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

enter image description here

打字时也不会消失。即使逃避也不会删除它,但通常会点击其他代码。

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

// 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
}

1 个答案:

答案 0 :(得分:10)

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

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

"editor.parameterHints": false