martincook3
martincook3
Obviously my comment is about 2½ years too late 😄, but for anyone who is facing the same issue, it is possible to achieve this by adding the following to...
Have a look at https://github.com/bartosz-antosik/vscode-spellright#settings. I think the `spellright.groupDictionaries` option will help you.
This should do what you want. ``` "spellright.ignoreRegExpsByClass": { "c": [ "/%(hd|ld|Ld)/g", ], "cpp": [ "/%(hd|ld|Ld)/g", ], } ``` 