I'm setting up my .vimrc but I encountered a problem with spell checking. Here is my .vimrc:
setlocal spell spelllang=en_us,fr_fr
In the editor, the spell check seems to work properly for both languages, but the problem is that before it opens vim I got "Warning: region fr not supported".
Is there a way to make this warning message disappear?
Answer by Doktor OSwaldo:
"fr" region does not exist, replace fr_fr
by fr
fix the problem.