vscode-spellright
vscode-spellright copied to clipboard
Spell right does not work for programming language
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?
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.