2016-07-14 29 views
2

當編輯與Visual Studio編寫JavaScript代碼我不斷得到展示某種無關緊要的方法簽名的無用和突兀彈出如何擺脫惱人的「newNode:節點,偏移量:號碼」彈出(?智能感知)

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 
} 

回答

9

要停止顯示煩人的彈出提示,打開 「settings.json」 在VSCode: (文件 - >首選項 - >設置)。

以下行添加到設置文件(包括引號),並將其保存:

"editor.parameterHints": false 
+0

它爲我的作品! –

+0

這讓我發瘋。非常感謝 –

+0

謝謝!我瘋了! –