VSCode - cSpell

スペルチェックを行う機能拡張

cSpellはスペルチェックしてくれる機能拡張です。

設定

Ctrl + ,settings.jsonを開いて、cSpellの設定をカスタマイズできます。

辞書を追加する

自作の辞書を追加するには、まずcSpell.dictionaryDefinitionsで、辞書名とパスを定義します。

"cSpell.dictionaryDefinitions": [
    { "name": "mylibrary",
      "path": "./mylibrary.txt"
    }
]

使用する辞書を設定する

デフォルトにない自作の辞書を設定します。

"cSpell.dictionaries": ["mylibrary"]

言語毎にスペルチェックの設定をする

言語毎に使用する辞書やケースを変更できます。

"cSpell.languageSettings": [
    { "languageId": "python", "allowCompoundWords": true, "dictionaries": ["python"]}
  ],

See Also