vscode-spellright icon indicating copy to clipboard operation
vscode-spellright copied to clipboard

Spell right does not work for programming language

Open shelper opened this issue 5 years ago • 1 comments

So spell right works for my plain text, but not for my programming language like python

I have the following settings except the default ones:

"spellright.documentTypes": [ "python", "markdown", "latex" ],
"spellright.notificationClass": "warning"

Now i put something like below to my python

parser.add_argument( # tesaaat comment
    ...
    help="test strinnnnng",
)

However spellright does not detect these two mispelled words, did i miss anything here?

shelper avatar Aug 31 '20 01:08 shelper

The only place I've found it is in the code. See lib/doctype.js. python is listed there, at least as of v3.0.60.

See https://github.com/bartosz-antosik/vscode-spellright/issues/298 which complains how it handles python, but shows that it does handle it.

Ben-Voris avatar Sep 02 '21 22:09 Ben-Voris