VScode代码自动补全提示

VScode代码自动补全提示

  1. 打开设置
    在这里插入图片描述

  2. 搜索 Suggest:Snippets Prevent Quick Suggestions ,去掉勾选
    在这里插入图片描述

  3. Ctrl+Shift+P打开setting.json文件,添加以下代码

    "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校验
false //不做css校验
    // vscode不自动补全添加代码

猜你喜欢

转载自blog.csdn.net/ok060/article/details/132507119