VScode代码自动补全提示

VScode代码自动补全提示

  1. 打开设置
    VScode代码自动补全提示_第1张图片

  2. 搜索 Suggest:Snippets Prevent Quick Suggestions ,去掉勾选
    VScode代码自动补全提示_第2张图片

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

你可能感兴趣的:(vscode,ide,编辑器,VS,Code)