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
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
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