Ratatui
Sorry for posting in the wrong issue.
Ratatui should not be corrected because RataTUI exists in the Rust ecosystem.
The current correction is ratatui,ratatouille
I'm assuming we should limit this to Rust?
Existing rust-specific logic we have:
(
"rust",
StaticDictConfig {
ignore_idents: &[
"flate2", // https://crates.io/crates/flate2
],
ignore_words: &[
"ser", // serde::ser, serde_json::ser, etc.
],
},
),
What about Markdown files? For example, I have this problem with my latest blog post which is written in Markdown.
Thats true for a lot of these per-language items currently.
I would like to solve this if possible. Love the tool, but just started a project with ratatui and it was a little jarring.
Is there more to it than just:
(
"rust",
StaticDictConfig {
ignore_idents: &[
"flate2", // https://crates.io/crates/flate2
"ratatui", // https://crates.io/crates/ratatui
],
ignore_words: &[
"ser", // serde::ser, serde_json::ser, etc.
],
},
),
That would basically be it
Do you prefer to do it yourself or want a quick PR?
Made a quick one anyway.
Thank you for creating and maintaining this by the way.