我有以下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为空.
当我开始在对象中输入新属性时,似乎一直在弹出此小弹出窗口。它阻止了我上下移动行,因为向上/向下箭头滚动了框的内容。我很遗憾地说这感觉像是MS Word的Clippy的VSCode版本!
我尝试了以下用户设置无济于事
// Place your settings in this file to overwrite the default settings
{
"editor.referenceInfos": false,
"editor.suggestOnTriggerCharacters": false,
"editor.autoClosingBrackets": false,
"editor.quickSuggestions": false
}
Run Code Online (Sandbox Code Playgroud)