Vscode-spell-checker: How to remove word from dictionary?

Created on 26 Jul 2017  路  3Comments  路  Source: streetsidesoftware/vscode-spell-checker

I added some wrong words to dictionary in vscode, how to remove them?

Done / Fixed FAQ enhancement

Most helpful comment

Good Question. I need to add this to the FAQ.

I wish this process was a bit easier.

It depends upon where you added it.

User Settings

If you added it to your user settings, then open VS Code Settings: F1 User Settings

There should be a setting cSpell.userWords that looks something like this:

"cSpell.userWords": [
    "CXLVIII",
    "DCCLXXXII",
    "Interglot",
    "MDCCLIV",
    "dicts",
    "tsmerge"
]

Remove the words you do not want in the list.

Project Settings

Project settings are generally stored in .vscode/cSpell.json found in the root of you project directory.

Look for the "words" entry:

    // words - list of words to be always considered correct
    "words": [
        "appname"
    ],

All 3 comments

Good Question. I need to add this to the FAQ.

I wish this process was a bit easier.

It depends upon where you added it.

User Settings

If you added it to your user settings, then open VS Code Settings: F1 User Settings

There should be a setting cSpell.userWords that looks something like this:

"cSpell.userWords": [
    "CXLVIII",
    "DCCLXXXII",
    "Interglot",
    "MDCCLIV",
    "dicts",
    "tsmerge"
]

Remove the words you do not want in the list.

Project Settings

Project settings are generally stored in .vscode/cSpell.json found in the root of you project directory.

Look for the "words" entry:

    // words - list of words to be always considered correct
    "words": [
        "appname"
    ],

Thank you, @Jason3S .

I have added a command to remove words from user settings: F1 Remove Words From ...

image

Was this page helpful?
0 / 5 - 0 ratings

Related issues

gandalfsaxe picture gandalfsaxe  路  3Comments

xwang233 picture xwang233  路  4Comments

gandalfsaxe picture gandalfsaxe  路  6Comments

lucamartinetti picture lucamartinetti  路  3Comments

ahmadyousefdev picture ahmadyousefdev  路  3Comments