Vim: Warning region not supportedHow to effectively work with multiple files in Vim?How to replace a character by a newline in VimDuplicate a whole line in VimHow do I move to end of line in Vim?Vim clear last search highlightingWhat is your most productive shortcut with Vim?What's a quick way to comment/uncomment lines in Vim?How to do case insensitive search in VimHow does the vim “write with sudo” trick work?How do I exit the Vim editor?

Some questions about Lightning and Tor

In Toy Story, are toys the only inanimate objects that become alive? And if so, why?

Given a specific computer system, is it possible to estimate the actual precise run time of a piece of Assembly code

To which country did MiGs in Top Gun belong?

How to find better food in airports

Why do we need explainable AI?

Are there any writings by blinded and/or exiled Byzantine emperors?

How Powerful a Starship Coilgun Can We Make?

Meaning of "offen balkon machen"?

What percentage of the mass/energy of the universe is in the form of electromagnetic waves?

Why does this regexpatch command only work once, not twice?

Using GNU screen, I get raw prompt with backslashes

What is the definition of Product

In mathematics is there a substitution that is "different" from Vieta's substitution to solve the cubic equation?

How were US credit cards verified in-store in the 1980's?

Is torque as fundamental a concept as force?

How does Harry wear the invisibility cloak?

How do you manage to study and have a balance in your life at the same time?

Why do fuses burn at a specific current?

Would there be balance issues if I allowed opportunity attacks against any creature, not just hostile ones?

Why didn't Thatcher give Hong Kong to Taiwan?

'Hard work never hurt anyone' Why not 'hurts'?

Why do modes sound so different, although they are basically the same as a mode of another scale?

Ways you can end up paying interest on a credit card if you pay the full amount back in due time



Vim: Warning region not supported


How to effectively work with multiple files in Vim?How to replace a character by a newline in VimDuplicate a whole line in VimHow do I move to end of line in Vim?Vim clear last search highlightingWhat is your most productive shortcut with Vim?What's a quick way to comment/uncomment lines in Vim?How to do case insensitive search in VimHow does the vim “write with sudo” trick work?How do I exit the Vim editor?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








-1















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?










share|improve this question



















  • 1





    seems that the region fr does not exists... try to go with fr without any region

    – Doktor OSwaldo
    Mar 27 at 16:00











  • Thanks, that worked. Is there a way to list all the available regions?

    – Lap
    Mar 28 at 1:47











  • there are depending on your installation. there is a spell folder in your $VIMRUNTIME Folder. Run (vim -e --cmd 'echo $VIMRUNTIME|quit' 2>&1) to see the location

    – Doktor OSwaldo
    Mar 28 at 6:21






  • 2





    @jww such as Vi and Vim...

    – D. Ben Knoble
    Mar 28 at 23:26











  • Next time I will! Thx for letting me know

    – Lap
    Mar 29 at 6:15

















-1















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?










share|improve this question



















  • 1





    seems that the region fr does not exists... try to go with fr without any region

    – Doktor OSwaldo
    Mar 27 at 16:00











  • Thanks, that worked. Is there a way to list all the available regions?

    – Lap
    Mar 28 at 1:47











  • there are depending on your installation. there is a spell folder in your $VIMRUNTIME Folder. Run (vim -e --cmd 'echo $VIMRUNTIME|quit' 2>&1) to see the location

    – Doktor OSwaldo
    Mar 28 at 6:21






  • 2





    @jww such as Vi and Vim...

    – D. Ben Knoble
    Mar 28 at 23:26











  • Next time I will! Thx for letting me know

    – Lap
    Mar 29 at 6:15













-1












-1








-1








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?










share|improve this question














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?







linux vim manjaro






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 at 15:57









LapLap

485 bronze badges




485 bronze badges










  • 1





    seems that the region fr does not exists... try to go with fr without any region

    – Doktor OSwaldo
    Mar 27 at 16:00











  • Thanks, that worked. Is there a way to list all the available regions?

    – Lap
    Mar 28 at 1:47











  • there are depending on your installation. there is a spell folder in your $VIMRUNTIME Folder. Run (vim -e --cmd 'echo $VIMRUNTIME|quit' 2>&1) to see the location

    – Doktor OSwaldo
    Mar 28 at 6:21






  • 2





    @jww such as Vi and Vim...

    – D. Ben Knoble
    Mar 28 at 23:26











  • Next time I will! Thx for letting me know

    – Lap
    Mar 29 at 6:15












  • 1





    seems that the region fr does not exists... try to go with fr without any region

    – Doktor OSwaldo
    Mar 27 at 16:00











  • Thanks, that worked. Is there a way to list all the available regions?

    – Lap
    Mar 28 at 1:47











  • there are depending on your installation. there is a spell folder in your $VIMRUNTIME Folder. Run (vim -e --cmd 'echo $VIMRUNTIME|quit' 2>&1) to see the location

    – Doktor OSwaldo
    Mar 28 at 6:21






  • 2





    @jww such as Vi and Vim...

    – D. Ben Knoble
    Mar 28 at 23:26











  • Next time I will! Thx for letting me know

    – Lap
    Mar 29 at 6:15







1




1





seems that the region fr does not exists... try to go with fr without any region

– Doktor OSwaldo
Mar 27 at 16:00





seems that the region fr does not exists... try to go with fr without any region

– Doktor OSwaldo
Mar 27 at 16:00













Thanks, that worked. Is there a way to list all the available regions?

– Lap
Mar 28 at 1:47





Thanks, that worked. Is there a way to list all the available regions?

– Lap
Mar 28 at 1:47













there are depending on your installation. there is a spell folder in your $VIMRUNTIME Folder. Run (vim -e --cmd 'echo $VIMRUNTIME|quit' 2>&1) to see the location

– Doktor OSwaldo
Mar 28 at 6:21





there are depending on your installation. there is a spell folder in your $VIMRUNTIME Folder. Run (vim -e --cmd 'echo $VIMRUNTIME|quit' 2>&1) to see the location

– Doktor OSwaldo
Mar 28 at 6:21




2




2





@jww such as Vi and Vim...

– D. Ben Knoble
Mar 28 at 23:26





@jww such as Vi and Vim...

– D. Ben Knoble
Mar 28 at 23:26













Next time I will! Thx for letting me know

– Lap
Mar 29 at 6:15





Next time I will! Thx for letting me know

– Lap
Mar 29 at 6:15












1 Answer
1






active

oldest

votes


















1















Answer by Doktor OSwaldo:



"fr" region does not exist, replace fr_fr by fr fix the problem.






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55381540%2fvim-warning-region-not-supported%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1















    Answer by Doktor OSwaldo:



    "fr" region does not exist, replace fr_fr by fr fix the problem.






    share|improve this answer





























      1















      Answer by Doktor OSwaldo:



      "fr" region does not exist, replace fr_fr by fr fix the problem.






      share|improve this answer



























        1














        1










        1









        Answer by Doktor OSwaldo:



        "fr" region does not exist, replace fr_fr by fr fix the problem.






        share|improve this answer













        Answer by Doktor OSwaldo:



        "fr" region does not exist, replace fr_fr by fr fix the problem.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 28 at 1:51









        LapLap

        485 bronze badges




        485 bronze badges





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55381540%2fvim-warning-region-not-supported%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해