typos icon indicating copy to clipboard operation
typos copied to clipboard

Ratatui

Open mo8it opened this issue 1 year ago • 3 comments

Sorry for posting in the wrong issue.

Ratatui should not be corrected because RataTUI exists in the Rust ecosystem.

mo8it avatar Jul 05 '24 21:07 mo8it

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.
            ],
        },
    ),

epage avatar Jul 05 '24 21:07 epage

What about Markdown files? For example, I have this problem with my latest blog post which is written in Markdown.

mo8it avatar Jul 05 '24 21:07 mo8it

Thats true for a lot of these per-language items currently.

epage avatar Jul 08 '24 21:07 epage

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.
            ],
        },
    ),

Rolv-Apneseth avatar Aug 08 '25 11:08 Rolv-Apneseth

That would basically be it

epage avatar Aug 08 '25 14:08 epage

Do you prefer to do it yourself or want a quick PR?

Rolv-Apneseth avatar Aug 08 '25 14:08 Rolv-Apneseth

Made a quick one anyway.

Thank you for creating and maintaining this by the way.

Rolv-Apneseth avatar Aug 08 '25 14:08 Rolv-Apneseth