Skip to content

Multi language spell check #4496

Description

@SimonBrandner

I've been wondering if it was possible to implement multi-language spell checking as it is a feature I would enjoy.

As I understand this, to enable spell checking for all languages we have to change this:

const availableSpellCheckerLanguages = contents.session.availableSpellCheckerLanguages;
const foundLanguages = locale.supportedSpellCheckLanguages[currentLocale].filter(language =>
availableSpellCheckerLanguages.includes(language),
);
contents.session.setSpellCheckerLanguages(foundLanguages);

into this:

contents.session.setSpellCheckerLanguages(contents.session.availableSpellCheckerLanguages); 

Although this doesn't seem like a really nice solution. Is a cleaner implementation planned? Should I attempt to implement this myself?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions