从更新开始,Visual代码就有了一个非常烦人的新弹出提示,我无法摆脱它。它以与我在settings.json中删除的旧弹出技巧不同的方式自动完成了这个单词。我已经在settings.json文件中添加了我可以在网上找到的所有内容,但它仍然存在。快把我逼疯了,它不断地改变着我正在写的单词。我加了一张照片:
显示自动完成单词的弹出提示的visual studio代码的图片
这是我拥有的settings.json脚本:
{
"editor.autoClosingBrackets": "never",
"editor.autoClosingOvertype": "never",
"editor.autoClosingQuotes": "never",
"html.autoClosingTags": false,
"javascript.autoClosingTags": false,
"typescript.autoClosingTags": false,
"editor.suggest.showMethods": false,
"editor.suggest.showOperators": false,
"editor.suggest.showSnippets": false,
"editor.suggest.showReferences": false,
"editor.suggest.showProperties": false,
"editor.suggest.showModules": false,
"editor.suggest.showInterfaces": false,
"editor.suggest.showIssues": false,
"editor.suggest.showKeywords": false,
"editor.suggest.showIcons": false,
"editor.suggest.showFunctions": false,
"editor.suggest.showInlineDetails": false,
"editor.suggest.showClasses": false,
"editor.suggest.showColors": false,
"editor.suggest.showConstants": false,
"editor.suggest.showConstructors": false,
"editor.suggest.showCustomcolors": false,
"editor.suggest.showDeprecated": false,
"editor.suggest.showEnumMembers": false,
"editor.suggest.showEnums": false,
"editor.suggest.showEvents": false,
"editor.suggest.showFields": false,
"editor.suggest.showFiles": false,
"editor.suggest.showFolders": false,
"editor.suggest.showStructs": false,
"editor.suggest.showTypeParameters": false,
"editor.suggest.showUnits": false,
"editor.suggest.showUsers": false,
"editor.suggest.showValues": false,
"editor.suggest.showWords": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestOnTriggerCharacters": false,
"editor.wordBasedSuggestions": false,
"workbench.colorTheme": "Default Light+",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.inlineSuggest.enabled": false,
"editor.quickSuggestionsDelay": 1000,
"editor.hover.enabled": false,
"editor.parameterHints.enabled": false,
}
发布于 2022-04-07 10:42:33
我找到了答案。如果我把quickSuggestions改为1000万
"editor.quickSuggestionsDelay": 10000000,
这意味着它要等很长时间才会发生。所以问题就在于快速的建议。我把上面的内容改为:
"editor.quickSuggestions": false,
现在它不见了。终于来了。呼。
https://stackoverflow.com/questions/71763228
复制相似问题