Can I use multiple spellchecking languages? #189
Unanswered
uncommon5012
asked this question in
Q&A
Replies: 1 comment
|
You can definitely check more than one language at once. In your VS Code settings (settings.json) add an array to the "ltex-plus.language": ["en-US", "fr"]The extension will then run LanguageTool for each language in the list and merge the results. If you need different languages for specific file types, you can scope it with "[markdown]": {
"ltex-plus.language": ["en-US", "fr"]
},
"[latex]": {
"ltex-plus.language": ["de-DE", "en-US"]
}I’ve used this setup myself when mixing English code comments with French documentation - works without any extra plugins. Just reload VS Code after changing the setting and you’ll see underlines for both languages. If you run into any odd behavior, check the output channel for |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello! I sometimes write in non-English languages and use some English words and sentences. Is it possible to enable checking for both languages? For example
franden-US?All reactions