-
-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instructions for enabling one of these dictionaries in vscode #2857
Comments
Thank you for the question. It made me realize that there wasn't a CSpell dictionary extension for VSCode. I have added it: Win32 - Code Spell Checker - Visual Studio Marketplace Getting StartedBy default the Example: Sample Code:
```cpp
// Parse the command line parameters
int argc;
LPWSTR* argv = CommandLineToArgvW(GetCommandLineW(), &argc);
pSample->ParseCommandLineArgs(argv, argc);
LocalFree(argv);
```
<!--- cspell:dictionaries win32 ---> |
thanks @Jason3S for the quick fix! There are some more modern terms that are missing from the platform SDK headers (e.g. NuGet, vcpkg). There's bound to be some "noise" in there, e.g. words that aren't actually correct that appear in comments or parameters names. For example, "annotes" is used as a parameter name for "a list of annotations". This may not be a huge deal but just pointing it out in case it is :) cc @jonwis since he'll be interested too |
I'll make a change to the dictionary to make it easier to add new terms. |
I'm trying to enable the win32 dictionary: https://github.com/streetsidesoftware/cspell-dicts/tree/main/dictionaries/win32
I have the cspell vscode extension, but I don't see how I can enable the win32 dictionary, could you please advise?
The text was updated successfully, but these errors were encountered: