We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thunderbird 102 supports using multiple spellcheck languages concurrently. This patch will support setting multiple languages such as:
%spellcheck(en,de)%
PS: You can still disable automatic spellcheck in a subsequent command %spellcheck(off)% Related: [Bug 1761221]
%spellcheck(off)%
The text was updated successfully, but these errors were encountered:
Test version:
smartTemplate-fx-3.12pre57.zip
To install, download the archive file and drag into Thunderbird Add-ons Manager (don't unpack contents to install)
Sorry, something went wrong.
The previous version used legacy code, we can avoid this by using a compose API function:
https://webextension-api.thunderbird.net/en/latest/compose.html#getactivedictionaries-tabid
To Do: rewrite as API function called through notification API.
There was still a problem in Tb91 with the undefined global gActiveDictionaries object. Here is a fix that works also with Thunderbird 91.10:
gActiveDictionaries
smartTemplate-fx-3.12pre71.zip
Implemented in 3.12.1 on 28/06/2022
RealRaven2000
No branches or pull requests
Thunderbird 102 supports using multiple spellcheck languages concurrently. This patch will support setting multiple languages such as:
%spellcheck(en,de)%
PS: You can still disable automatic spellcheck in a subsequent command
%spellcheck(off)%
Related: [Bug 1761221]
The text was updated successfully, but these errors were encountered: