关于VSCode中标签自动补全功能失灵的解决办法

1. 打开设置,搜索emmet

2. 找到setting.json进行编辑

关于VSCode中标签自动补全功能失灵的解决办法_第1张图片

3. 将下列代码粘贴,保存。

// vscode不自动补全
  "editor.suggest.snippetsPreventQuickSuggestions": false,
  "editor.quickSuggestionsDelay": 100,
  "editor.quickSuggestions": null,
  "window.zoomLevel": 0,
  "terminal.integrated.rendererType": "dom",
  "files.associations": {
    "*.vue": "html"
  }

4. 然后就可以正常使用了,亲测好用。

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