vscode-spell-checker icon indicating copy to clipboard operation
vscode-spell-checker copied to clipboard

Allow custom dictionaries for jupyter notebook

Open colinfang opened this issue 8 months ago • 0 comments

The screenshot shows the spell check from .ipynb & .py

image

It seems .ipynb ignores some default libraries loaded for python file. Hence it complains about .arange & dtype in .ipynb but not .py

Also, I tried to add custom dictionary myDict via

    "languageSettings": [
        {
            "languageId": "python",
            "dictionaries": [
                "wordsEn",
                "python",
                "data-science",
                "myDict"
            ]
        }
    ],

The setting works for .py, but not .ipynb

Have I missed anything?

colinfang avatar Jun 08 '24 12:06 colinfang