VScode代码自动补全提示
1.打开设置
2.搜索 Suggest:Snippets Prevent Quick Suggestions ,去掉勾选。
3.Ctrl+Shift+P打开setting.json文件,添加以下代码
// vscode不自动补全添加代码 "editor.suggest.snippetsPreventQuickSuggestions": false, "editor.quickSuggestionsDelay": 100, "editor.quickSuggestions": null, "window.zoomLevel": 0, "terminal.integrated.rendererType": "dom", "files.associations": { "*.vue": "html" }, "css.validate": false //不做css校验 // vscode不自动补全添加代码
标签:补全,VScode,代码,添加,自动,editor From: https://www.cnblogs.com/jijm123/p/17381522.html