Request for spell checker extension #15662
Replies: 3 comments 1 reply
-
I've been using Code Spell Checker with Visual Studio Code, which is great because it understands camelCase, etc. It uses a library called cSpell, which is mostly TypeScript. Maybe it would be possible to turn that into a WebAssembly extension for Zed. I'm not sure. Alternatively, Sublime Text uses a C++ library called Hunspell. But the existing Rust bindings don't appear to be well maintained. It would be nice to have at least basic spell checking for writing Markdown files, otherwise I'd likely use a different editor for that task. Spell checking that understands code would be amazing! |
Beta Was this translation helpful? Give feedback.
-
For zed this LSP protocol based spell checker can be used using extension: |
Beta Was this translation helpful? Give feedback.
-
You might be interested in BaptisteRoseau/zed-typos which bundles tekumara/typos-lsp. It's focus is detecting typos with (nearly) no false positives, it's not a spell-checker but it definitely works. We use typos in CI too, so it's nice to catch things before committing. |
Beta Was this translation helpful? Give feedback.
-
I want a feature for check English typo! I used to use an extension in vs code called spell checker it was so useful. when a word spelling is incorrect it suggest then by clicking ctrl + . it shows the solutions.
Beta Was this translation helpful? Give feedback.
All reactions