wushuaibuaa / vsautocomplete-en-en

Autocomplete English word when typing.
GNU General Public License v3.0
24 stars 7 forks source link

Incorrect type. Expected "object". #9

Open kuzen opened 10 months ago

kuzen commented 10 months ago

image

"editor.quickSuggestions": true is invalid after VSCode v1.71, please use the following configuration:

  "[markdown]": {
      "editor.quickSuggestions": {
          "other": "on",
          "comments": "on",
          "strings": "on"
      }
  },