Spellchecker for GDScript in VSCode

Apologies for posting about VSCode here but this is a GDScript problem only.

I use VSCode for GDScript and have installed the Code Spell Checker extension (Code Spell Checker - Visual Studio Marketplace)

It works fine with other file types but ignores *.gd files (I manually added the gd to 'Enable Filetypes' but no luck).

So, has anyone gotten this spellchecker or another one to work? I’m just concerned about misspellings in the comments, btw.

Thank you all.

1 Like

Found it.

In case anyone has the same problem, click on the ‘spellchecker’ button in the status bar. It will open a ‘Spell Checker Preferences’. Under the tab ‘USER’ find the ‘gdscript’ button to enable spelling in gd files.

2 Likes

settings.json:

"cSpell.enabledFileTypes": {
    "gdscript": true
},
1 Like