It is possible to create global user-defined words with:
// User words to add to dictionary. Should only be in the user settings.
"cSpell.userWords": [],
But what if I want to amend a certain dictionary, e.g. the latex dictionary? Possible?
It is possible to get the same effect:
"cSpell.languageSettings": [
{
// Specify the language
"languageId": "latex",
// Add your words here
"words": [
"myownword"
]
}
]
Ah good. Although in practice one always uses ctlr+. to add words to the dictionary. It would be very tedious to have to add them manually in settings every time. I know it may be a tall order, but what if language dictionaries could be added to the IntelliSense context menu? I.e. pressing ctrl+. on a word with a warning would give:
...
Add: "" to latex directory
Add: "" to dictionary
Add: "" to folder directory
Add: "" to workspace directory
Related to: #323
Most helpful comment
It is possible to get the same effect: