VS Code Autocorrect

前端 未结 1 1850
谎友^
谎友^ 2021-01-22 14:23

I\'m looking for a way to automatically replace my commonly misspelt words in VS Code.

Is there something out there / how would I create something where I can add a part

相关标签:
1条回答
  • 2021-01-22 14:41

    There is an Auto Correct extension for VS Code.

    Its configuration is pretty straightforward. In your case just add the following to your settings.json

    "auto-correct.dictionary": [
    {
      "languages": ["javascript","css","html"],
      "words": {
        "backgorund": "background"
      }
    }]
    

    And "backgorund" will be automatically corrected without specific key presses.

    0 讨论(0)
提交回复
热议问题