vscode 配置

1.关闭悬浮提示

"editor.parameterHints": false

2.其他配置

// 下面四行关闭智能提示
 "editor.quickSuggestions": false,
 "editor.parameterHints": false,
 "editor.wordBasedSuggestions": false,
 "editor.snippetSuggestions": "none",
 // 控制键入时是否应自动显示建议
 "editor.quickSuggestions": {
 "other": false,
 "comments": false,
 "strings": false
    },
 // 控制键入触发器字符时是否应自动显示建议
 "editor.suggestOnTriggerCharacters": false,
 // 控制是否根据文档中的文字计算自动完成列表。
 "editor.wordBasedSuggestions": false,

  

https://www.tongbiao.xyz/
原文地址:https://www.cnblogs.com/tongbiao/p/9310167.html