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;
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
add a comment |
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
1
seems that the regionfrdoes not exists... try to go withfrwithout 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$VIMRUNTIMEFolder. 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
add a comment |
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
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
linux vim manjaro
asked Mar 27 at 15:57
LapLap
485 bronze badges
485 bronze badges
1
seems that the regionfrdoes not exists... try to go withfrwithout 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$VIMRUNTIMEFolder. 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
add a comment |
1
seems that the regionfrdoes not exists... try to go withfrwithout 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$VIMRUNTIMEFolder. 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
add a comment |
1 Answer
1
active
oldest
votes
Answer by Doktor OSwaldo:
"fr" region does not exist, replace fr_fr by fr fix the problem.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Answer by Doktor OSwaldo:
"fr" region does not exist, replace fr_fr by fr fix the problem.
add a comment |
Answer by Doktor OSwaldo:
"fr" region does not exist, replace fr_fr by fr fix the problem.
add a comment |
Answer by Doktor OSwaldo:
"fr" region does not exist, replace fr_fr by fr fix the problem.
Answer by Doktor OSwaldo:
"fr" region does not exist, replace fr_fr by fr fix the problem.
answered Mar 28 at 1:51
LapLap
485 bronze badges
485 bronze badges
add a comment |
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
seems that the region
frdoes not exists... try to go withfrwithout 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
$VIMRUNTIMEFolder. 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