VScode代码自动补全提示

发布时间 2023-05-08 14:01:06作者: 癫狂编程

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不自动补全添加代码