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
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.