我有以下settings.json:
"editor.quickSuggestions": false,
"editor.suggestOnTriggerCharacters": false,
"editor.wordBasedSuggestions": false,
"editor.quickSuggestionsDelay": 1000000
Run Code Online (Sandbox Code Playgroud)
但是,尽管代码建议在我编写这样的代码(javascript)之后立即显示:
settings.json正确采用其他设置,例如"editor.fontSize": 17.
这是Visual Studio Code IntelliSense的文档,我找到了上面的设置.我在OS X上使用VS Code 1.6.0(我在以前版本的编辑器上也经历过它).
我有用户设置中的所有设置settings.json,我的工作区设置settings.json为空.
当使用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)