-
-
Notifications
You must be signed in to change notification settings - Fork 207
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
What should/does the cpp dictionary contain #54
Comments
Makes sense to split the dictionary to smaller parts. Would it be a good idea to have more specific subsets as a separate dictionaries, so that potential users could only load those sets that they most likely need? |
Please feel free to clean it up. The original was sourced from XCode header files. |
To have better support for compound words and checking case, version 5 of the spell checker will support a simple dictionary definition syntax: cspell/wordlists.md at master · streetsidesoftware/cspell I want to turn of So, what should be in the cpp dictionary?
|
I have started some work on this here. I have a file for keywords and basic vocabulary, files for the standard library functions and constants (I manually went through all the standard library documentation pages on cppreference; I may have missed a couple things by accident though), a file for jargon, a file for notable people in the ecosystem, keywords and names of tools in the ecosystem, and I'm working on a file for the boost library. My repo is licensed as public domain. Let me know if there's any way I can help integrate this work into this repo. |
Very cool!. Please feel free to make a PR updating dictionaries/cpp by adding a |
I was looking to see if I could clean up the cpp dictionary since i've hit a few questions. It looks like it was probably sourced from some header files for some different things (EX: found that a chunk was from the CUPS printer header files).
I'm wondering what should be in here?
I'll submit some PRs for some things, but I was wondering if these should get split into separate files, then rejoined at the compile time.
The text was updated successfully, but these errors were encountered: