Skip to content

Instantly share code, notes, and snippets.

@d2s
Last active September 20, 2023 09:57
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save d2s/927d539268ee219c7ad04da6f5bc813b to your computer and use it in GitHub Desktop.
Save d2s/927d539268ee219c7ad04da6f5bc813b to your computer and use it in GitHub Desktop.
Installing spell checker to VS Code

Spelling Checker for Visual Studio Code

  • README of the code-spell-checker VS Code extension.

Installing spell checker to VS Code

  • Open up VS Code
  • Press button F1
  • Type ext install code-spell-checker to the command promnt and press Enter key.
  • Reload the VS Code window to enable the new extension.

Installing 3rd party word lists to the spell checker

npm install -g cspell-dict-html-symbol-entities
cspell-dict-html-symbol-entities-link

Germany dictionary

Including a basic German dictionary would increase the size of extension by at least 4 MB, so that generally might not make sense to do by default.

  • cspell-dicts repository shows what things there are in the German dictionary.

Node.js & tools distributed via npm can be installed easily, without need to know anything about JavaScript itself.

After installing the Node itself, run these two commands in your computer's command line terminal:

npm install -g cspell-dict-de-de
cspell-dict-de-de-link

After that, follow the instructions of the Spell Checker's documentation. You can either add the settings to VS Code's global settings, or have project-specific custom adjustments.

@wgunther85
Copy link

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment