-
-
Notifications
You must be signed in to change notification settings - Fork 128
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
Option to run spell check on entire files/folders #376
Comments
The VS Code spell checker is based upon cspell. If you install it, is should be possible to check all your files with a single command. |
The CMD line tool cspell can check entire directories, but it doesn't integrate with any of the VS Code settings in place. My suggestion is to either make the VS Code settings compatible with the CMD line tool cspell, or create an option in VS Code to check entire directories through the application. I have the issue where I see misspelled words in VS Code, so I add them to the dictionary or ignore them which adds them to a list under the hood in VS Code. But cspell has its own list of custom/ignored words. So my solution is either to continuously sync settings between the two manually, or only use the cspell CMD line tool and remove the VS Code plugin. |
@millergd If you have a |
Awesome! It works just as you have described. If I right-click and add a word to the "folder" dictionary through the app, it creates a |
@Jason3S Please, can you tell me how to get this working with several dictionaries?. I have installed |
It is a bit annoying, but you need to install the Spanish Dictionary separately. |
Working!, thank you very much!!! |
Although you seem to have answered @millergd's problem which he mentioned in a subsequent comment, the original suggestion of being able to scan a whole directory from within the VS Code extension would be very valuable, and as far as I understand, still isn't possible. Are there any plans to add this? |
I'd also like to be able to spell check a folder |
So, is this on the list for implementation any time soon? |
Hi! |
Because there is a command line alternative, there isn't any urgency to do this.
npx cspell . I'm going to close this issue as not planned, since the original request was answered. Please open an new issue if the command line tool is insufficient. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
There needs to be an option to run spell check on an entire file/folder either through the command line or through the interface. The same way linting can be run or spell check in MS Word. The npm package doesn't integrate with any of the VS Code plugin settings
The text was updated successfully, but these errors were encountered: