Sublime Forum

Change language in document and how to spell check

#1

Hi All

I frequently have a document where I intermix dutch and french sentences. Is it possible to have sublime text switch between these languages for its spell checking?

Tx for any help
Alain

PS: Happy newyear to all of you

0 Likes

#2

A plugin could do that (toggling), and it’s true that it’s annoying (french/english). I might do it one day.

In the mean time, you could set a shortcut:

{
    "keys": ["alt+f6"], "command": "set_user_setting", 
    "args": {
        "file": "Preferences.sublime-settings", 
        "setting": "dictionary", 
        "value": "Packages/Language - French - Français/fr_FR.dic"
    }
}
{
    "keys": ["shift+f6"], "command": "set_user_setting", 
    "args": {
        "file": "Preferences.sublime-settings", 
        "setting": "dictionary", 
        "value": "Packages/Language - English/en_US.dic"
    }
}

Update the value to your needs.

Matt

0 Likes