How do I remap “å” to type “å”?How to enter tilde (~), back tick (`) and special chars with a non-US keyboard?mapping '2' key in Thai resulting in '/'Sticky shift - or getting <shift> with letter combinationsDifferentiating between left and right shift keyRemapping keys for purpose of characterwise searchRemap standard motionsRemapped keys won't work when combinedCan't remap <C-C> in vim
How were medieval castles built in swamps or marshes without draining them?
If the Shillelagh cantrip is applied to a club with non-standard damage dice, what is the resulting damage dice?
Why does Windows store Wi-Fi passwords in a reversible format?
Why error propagation in CBC mode encryption affect two blocks?
Who was the most successful German spy against Great Britain in WWII, from the contemporary German perspective?
Can an ISO file damage—or infect—the machine it's being burned on?
Make utility using LINQ
Handling Disruptive Student on the Autism Spectrum
Expanding powers of expressions of the form ax+b
LINQ for generating all possible permutations
Gambler coin problem: fair coin and two-headed coin
Disk usage of integer column vs boolean column in Postgres
How long do you think advanced cybernetic implants would plausibly last?
Is first Ubuntu user root?
Billiard balls collision
transparent text, such that floats and footnotes are affected correctly
What is Spectral Subtraction for noise reduction?
Count the number of paths to n
What happened to the HDEV ISS Experiment? Is it over?
Is this password scheme legit?
Why is a statement like 1 + n *= 3 allowed in Ruby?
about to retire but not retired yet, employed but not working any more
Unlock your Lock
How would a low-tech device be able to alert its user?
How do I remap “å” to type “å”?
How to enter tilde (~), back tick (`) and special chars with a non-US keyboard?mapping '2' key in Thai resulting in '/'Sticky shift - or getting <shift> with letter combinationsDifferentiating between left and right shift keyRemapping keys for purpose of characterwise searchRemap standard motionsRemapped keys won't work when combinedCan't remap <C-C> in vim
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I recently came over some use for letters like æ, ø, and å. For context, these are available on my keyboard, and work fine in other programs. It's also a Norwegian keyboard if that's relevant.
With Vim, specifically gVim, only æ and ø work. Other combined letters (such as ö and â work out of the box (by typing ¨o
). Attempting to write å results in various behavior I can't understand (with no remapping, pressing it shifts around lines or letters. Typing it in an empty buffer with no remapping pulls code from somewhere, possibly a swap file?).
I know I can type the letter with <C-v>
(as suggested here) or with <C-k> å å
, but this is slow and, in my opinion, unnecessary. Also, <C-v> å
results in å
, so I'm assuming I'm supposed to use it when attempting to remap.
I tried with imap å <C-v> å
, imap å <C-k>å
, imap å <C-k> å
, imap å <C-k> å å
, imap å <C-k> åå
, and the basic imap å å
, but none of them give me the letter. Remapping it to other output letters doesn't do anything at all (one of the other variants listed here resulted in an e
).
How do I remap the key å
to actually give me the letter å
in insert mode?
When I haven't messed around with mapping, :verbose map å
says the key isn't used.
vimrc key-bindings gvim microsoft-windows
add a comment |
I recently came over some use for letters like æ, ø, and å. For context, these are available on my keyboard, and work fine in other programs. It's also a Norwegian keyboard if that's relevant.
With Vim, specifically gVim, only æ and ø work. Other combined letters (such as ö and â work out of the box (by typing ¨o
). Attempting to write å results in various behavior I can't understand (with no remapping, pressing it shifts around lines or letters. Typing it in an empty buffer with no remapping pulls code from somewhere, possibly a swap file?).
I know I can type the letter with <C-v>
(as suggested here) or with <C-k> å å
, but this is slow and, in my opinion, unnecessary. Also, <C-v> å
results in å
, so I'm assuming I'm supposed to use it when attempting to remap.
I tried with imap å <C-v> å
, imap å <C-k>å
, imap å <C-k> å
, imap å <C-k> å å
, imap å <C-k> åå
, and the basic imap å å
, but none of them give me the letter. Remapping it to other output letters doesn't do anything at all (one of the other variants listed here resulted in an e
).
How do I remap the key å
to actually give me the letter å
in insert mode?
When I haven't messed around with mapping, :verbose map å
says the key isn't used.
vimrc key-bindings gvim microsoft-windows
1
:verbose map
shows the mappings for normal, visual, select, and operator-pending mode. For insert mode mappings you need to use:verbose imap
or:verbose map!
(see:help map-modes
).
– Jürgen Krämer
8 hours ago
1
@JürgenKrämer Right, I keep mixing those up ^^" å was actually remapped by a plugin (github.com/jiangmiao/auto-pairs). For a quick hackish test, disabling it fixed the letter, so I'll just have to see if I can avoid that specific mapping with some config. Also, does it make sense to keep the question or should I just delete it?
– Zoe
8 hours ago
2
@Zoe You should self-answer, indicate how you found the mapping existed and how you found which plug-in set the mapping. If you find more about how it set it and why, include that in your answer as well...
– filbranden
8 hours ago
Done. Thanks again ^^
– Zoe
5 hours ago
1
Thank you @Zoe for digging into this and writing such a detailed answer!
– filbranden
1 hour ago
add a comment |
I recently came over some use for letters like æ, ø, and å. For context, these are available on my keyboard, and work fine in other programs. It's also a Norwegian keyboard if that's relevant.
With Vim, specifically gVim, only æ and ø work. Other combined letters (such as ö and â work out of the box (by typing ¨o
). Attempting to write å results in various behavior I can't understand (with no remapping, pressing it shifts around lines or letters. Typing it in an empty buffer with no remapping pulls code from somewhere, possibly a swap file?).
I know I can type the letter with <C-v>
(as suggested here) or with <C-k> å å
, but this is slow and, in my opinion, unnecessary. Also, <C-v> å
results in å
, so I'm assuming I'm supposed to use it when attempting to remap.
I tried with imap å <C-v> å
, imap å <C-k>å
, imap å <C-k> å
, imap å <C-k> å å
, imap å <C-k> åå
, and the basic imap å å
, but none of them give me the letter. Remapping it to other output letters doesn't do anything at all (one of the other variants listed here resulted in an e
).
How do I remap the key å
to actually give me the letter å
in insert mode?
When I haven't messed around with mapping, :verbose map å
says the key isn't used.
vimrc key-bindings gvim microsoft-windows
I recently came over some use for letters like æ, ø, and å. For context, these are available on my keyboard, and work fine in other programs. It's also a Norwegian keyboard if that's relevant.
With Vim, specifically gVim, only æ and ø work. Other combined letters (such as ö and â work out of the box (by typing ¨o
). Attempting to write å results in various behavior I can't understand (with no remapping, pressing it shifts around lines or letters. Typing it in an empty buffer with no remapping pulls code from somewhere, possibly a swap file?).
I know I can type the letter with <C-v>
(as suggested here) or with <C-k> å å
, but this is slow and, in my opinion, unnecessary. Also, <C-v> å
results in å
, so I'm assuming I'm supposed to use it when attempting to remap.
I tried with imap å <C-v> å
, imap å <C-k>å
, imap å <C-k> å
, imap å <C-k> å å
, imap å <C-k> åå
, and the basic imap å å
, but none of them give me the letter. Remapping it to other output letters doesn't do anything at all (one of the other variants listed here resulted in an e
).
How do I remap the key å
to actually give me the letter å
in insert mode?
When I haven't messed around with mapping, :verbose map å
says the key isn't used.
vimrc key-bindings gvim microsoft-windows
vimrc key-bindings gvim microsoft-windows
edited 8 hours ago
Zoe
asked 8 hours ago
ZoeZoe
1808 bronze badges
1808 bronze badges
1
:verbose map
shows the mappings for normal, visual, select, and operator-pending mode. For insert mode mappings you need to use:verbose imap
or:verbose map!
(see:help map-modes
).
– Jürgen Krämer
8 hours ago
1
@JürgenKrämer Right, I keep mixing those up ^^" å was actually remapped by a plugin (github.com/jiangmiao/auto-pairs). For a quick hackish test, disabling it fixed the letter, so I'll just have to see if I can avoid that specific mapping with some config. Also, does it make sense to keep the question or should I just delete it?
– Zoe
8 hours ago
2
@Zoe You should self-answer, indicate how you found the mapping existed and how you found which plug-in set the mapping. If you find more about how it set it and why, include that in your answer as well...
– filbranden
8 hours ago
Done. Thanks again ^^
– Zoe
5 hours ago
1
Thank you @Zoe for digging into this and writing such a detailed answer!
– filbranden
1 hour ago
add a comment |
1
:verbose map
shows the mappings for normal, visual, select, and operator-pending mode. For insert mode mappings you need to use:verbose imap
or:verbose map!
(see:help map-modes
).
– Jürgen Krämer
8 hours ago
1
@JürgenKrämer Right, I keep mixing those up ^^" å was actually remapped by a plugin (github.com/jiangmiao/auto-pairs). For a quick hackish test, disabling it fixed the letter, so I'll just have to see if I can avoid that specific mapping with some config. Also, does it make sense to keep the question or should I just delete it?
– Zoe
8 hours ago
2
@Zoe You should self-answer, indicate how you found the mapping existed and how you found which plug-in set the mapping. If you find more about how it set it and why, include that in your answer as well...
– filbranden
8 hours ago
Done. Thanks again ^^
– Zoe
5 hours ago
1
Thank you @Zoe for digging into this and writing such a detailed answer!
– filbranden
1 hour ago
1
1
:verbose map
shows the mappings for normal, visual, select, and operator-pending mode. For insert mode mappings you need to use :verbose imap
or :verbose map!
(see :help map-modes
).– Jürgen Krämer
8 hours ago
:verbose map
shows the mappings for normal, visual, select, and operator-pending mode. For insert mode mappings you need to use :verbose imap
or :verbose map!
(see :help map-modes
).– Jürgen Krämer
8 hours ago
1
1
@JürgenKrämer Right, I keep mixing those up ^^" å was actually remapped by a plugin (github.com/jiangmiao/auto-pairs). For a quick hackish test, disabling it fixed the letter, so I'll just have to see if I can avoid that specific mapping with some config. Also, does it make sense to keep the question or should I just delete it?
– Zoe
8 hours ago
@JürgenKrämer Right, I keep mixing those up ^^" å was actually remapped by a plugin (github.com/jiangmiao/auto-pairs). For a quick hackish test, disabling it fixed the letter, so I'll just have to see if I can avoid that specific mapping with some config. Also, does it make sense to keep the question or should I just delete it?
– Zoe
8 hours ago
2
2
@Zoe You should self-answer, indicate how you found the mapping existed and how you found which plug-in set the mapping. If you find more about how it set it and why, include that in your answer as well...
– filbranden
8 hours ago
@Zoe You should self-answer, indicate how you found the mapping existed and how you found which plug-in set the mapping. If you find more about how it set it and why, include that in your answer as well...
– filbranden
8 hours ago
Done. Thanks again ^^
– Zoe
5 hours ago
Done. Thanks again ^^
– Zoe
5 hours ago
1
1
Thank you @Zoe for digging into this and writing such a detailed answer!
– filbranden
1 hour ago
Thank you @Zoe for digging into this and writing such a detailed answer!
– filbranden
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
I screwed up slightly on which :verbose map
to use. Since it's while editing, and the relevant mapping is imap
or inoremap
, :verbose imap
/:verbose map!
would be the right command.
In this case, the reason I had such weird behavior is because of the function it's mapped to. It calls a function in a parentheses auto-completion/utility library, and specifically the fast wrap feature (which wraps words in parentheses - I haven't used that feature much).
Running :verbose imap å
or :verbose map! å
gave me this:
i å *@<C-R>=AutoPairsFastWrap()<CR>
Last set from ~.vimpluggedauto-pairspluginauto-pairs.vim line 562
In this case, the plugin used is jiangmiao/auto-pairs. The block that set the shortcut looks like this:
if g:AutoPairsShortcutFastWrap != ''
execute 'inoremap <buffer> <silent> '.g:AutoPairsShortcutFastWrap.' <C-R>=AutoPairsFastWrap()<CR>'
end
By default, the shortcut is set to <M-e>
, but that in itself doesn't necessarily make sense, especially with the mapping. If, however, you type <M-e>
when it's not remapped, it outputs å
. <C-v> <M-e>
also gives å
this might be keyboard-dependent - I'm not sure and I can't test it. So the library remapping <M-e>
resulted in å
being remapped to a function that when provided sensible input works fine, but when provided none or invalid input results in the weird behavior I saw.
The reason I couldn't override it is because the original remapping was done with <buffer>
, which seems to override the global ones. I think that's the reason imap å å
didn't work. With imap <buffer> å å
, it outputs å instead of calling the plugin functon that originally defined it.
That being said, there's a relatively easy fix to this that doesn't require any remapping of å
, but rather remapping the library. The code I showed earlier uses g:AutoPairsShortcutFastWrap
, which defines which key it'll map to. I just decided on <C-f>
, but any unused shortcut will do:
let g:AutoPairsShortcutFastWrap = "<C-f>"
After reloading Vim, å
works as a normal letter again.
TL;DR: <M-e>
is å
(<C-v> <M-e>
gives me å
at least), jiangmiao/auto-pairs remapped <M-e>
, which affected the key. There is most likely other mappings that are equivalent to other non-English letters as well, which can explain what happens when similar keys break on other keyboards.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "599"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fvi.stackexchange.com%2fquestions%2f20995%2fhow-do-i-remap-%25c3%25a5-to-type-%25c3%25a5%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
I screwed up slightly on which :verbose map
to use. Since it's while editing, and the relevant mapping is imap
or inoremap
, :verbose imap
/:verbose map!
would be the right command.
In this case, the reason I had such weird behavior is because of the function it's mapped to. It calls a function in a parentheses auto-completion/utility library, and specifically the fast wrap feature (which wraps words in parentheses - I haven't used that feature much).
Running :verbose imap å
or :verbose map! å
gave me this:
i å *@<C-R>=AutoPairsFastWrap()<CR>
Last set from ~.vimpluggedauto-pairspluginauto-pairs.vim line 562
In this case, the plugin used is jiangmiao/auto-pairs. The block that set the shortcut looks like this:
if g:AutoPairsShortcutFastWrap != ''
execute 'inoremap <buffer> <silent> '.g:AutoPairsShortcutFastWrap.' <C-R>=AutoPairsFastWrap()<CR>'
end
By default, the shortcut is set to <M-e>
, but that in itself doesn't necessarily make sense, especially with the mapping. If, however, you type <M-e>
when it's not remapped, it outputs å
. <C-v> <M-e>
also gives å
this might be keyboard-dependent - I'm not sure and I can't test it. So the library remapping <M-e>
resulted in å
being remapped to a function that when provided sensible input works fine, but when provided none or invalid input results in the weird behavior I saw.
The reason I couldn't override it is because the original remapping was done with <buffer>
, which seems to override the global ones. I think that's the reason imap å å
didn't work. With imap <buffer> å å
, it outputs å instead of calling the plugin functon that originally defined it.
That being said, there's a relatively easy fix to this that doesn't require any remapping of å
, but rather remapping the library. The code I showed earlier uses g:AutoPairsShortcutFastWrap
, which defines which key it'll map to. I just decided on <C-f>
, but any unused shortcut will do:
let g:AutoPairsShortcutFastWrap = "<C-f>"
After reloading Vim, å
works as a normal letter again.
TL;DR: <M-e>
is å
(<C-v> <M-e>
gives me å
at least), jiangmiao/auto-pairs remapped <M-e>
, which affected the key. There is most likely other mappings that are equivalent to other non-English letters as well, which can explain what happens when similar keys break on other keyboards.
add a comment |
I screwed up slightly on which :verbose map
to use. Since it's while editing, and the relevant mapping is imap
or inoremap
, :verbose imap
/:verbose map!
would be the right command.
In this case, the reason I had such weird behavior is because of the function it's mapped to. It calls a function in a parentheses auto-completion/utility library, and specifically the fast wrap feature (which wraps words in parentheses - I haven't used that feature much).
Running :verbose imap å
or :verbose map! å
gave me this:
i å *@<C-R>=AutoPairsFastWrap()<CR>
Last set from ~.vimpluggedauto-pairspluginauto-pairs.vim line 562
In this case, the plugin used is jiangmiao/auto-pairs. The block that set the shortcut looks like this:
if g:AutoPairsShortcutFastWrap != ''
execute 'inoremap <buffer> <silent> '.g:AutoPairsShortcutFastWrap.' <C-R>=AutoPairsFastWrap()<CR>'
end
By default, the shortcut is set to <M-e>
, but that in itself doesn't necessarily make sense, especially with the mapping. If, however, you type <M-e>
when it's not remapped, it outputs å
. <C-v> <M-e>
also gives å
this might be keyboard-dependent - I'm not sure and I can't test it. So the library remapping <M-e>
resulted in å
being remapped to a function that when provided sensible input works fine, but when provided none or invalid input results in the weird behavior I saw.
The reason I couldn't override it is because the original remapping was done with <buffer>
, which seems to override the global ones. I think that's the reason imap å å
didn't work. With imap <buffer> å å
, it outputs å instead of calling the plugin functon that originally defined it.
That being said, there's a relatively easy fix to this that doesn't require any remapping of å
, but rather remapping the library. The code I showed earlier uses g:AutoPairsShortcutFastWrap
, which defines which key it'll map to. I just decided on <C-f>
, but any unused shortcut will do:
let g:AutoPairsShortcutFastWrap = "<C-f>"
After reloading Vim, å
works as a normal letter again.
TL;DR: <M-e>
is å
(<C-v> <M-e>
gives me å
at least), jiangmiao/auto-pairs remapped <M-e>
, which affected the key. There is most likely other mappings that are equivalent to other non-English letters as well, which can explain what happens when similar keys break on other keyboards.
add a comment |
I screwed up slightly on which :verbose map
to use. Since it's while editing, and the relevant mapping is imap
or inoremap
, :verbose imap
/:verbose map!
would be the right command.
In this case, the reason I had such weird behavior is because of the function it's mapped to. It calls a function in a parentheses auto-completion/utility library, and specifically the fast wrap feature (which wraps words in parentheses - I haven't used that feature much).
Running :verbose imap å
or :verbose map! å
gave me this:
i å *@<C-R>=AutoPairsFastWrap()<CR>
Last set from ~.vimpluggedauto-pairspluginauto-pairs.vim line 562
In this case, the plugin used is jiangmiao/auto-pairs. The block that set the shortcut looks like this:
if g:AutoPairsShortcutFastWrap != ''
execute 'inoremap <buffer> <silent> '.g:AutoPairsShortcutFastWrap.' <C-R>=AutoPairsFastWrap()<CR>'
end
By default, the shortcut is set to <M-e>
, but that in itself doesn't necessarily make sense, especially with the mapping. If, however, you type <M-e>
when it's not remapped, it outputs å
. <C-v> <M-e>
also gives å
this might be keyboard-dependent - I'm not sure and I can't test it. So the library remapping <M-e>
resulted in å
being remapped to a function that when provided sensible input works fine, but when provided none or invalid input results in the weird behavior I saw.
The reason I couldn't override it is because the original remapping was done with <buffer>
, which seems to override the global ones. I think that's the reason imap å å
didn't work. With imap <buffer> å å
, it outputs å instead of calling the plugin functon that originally defined it.
That being said, there's a relatively easy fix to this that doesn't require any remapping of å
, but rather remapping the library. The code I showed earlier uses g:AutoPairsShortcutFastWrap
, which defines which key it'll map to. I just decided on <C-f>
, but any unused shortcut will do:
let g:AutoPairsShortcutFastWrap = "<C-f>"
After reloading Vim, å
works as a normal letter again.
TL;DR: <M-e>
is å
(<C-v> <M-e>
gives me å
at least), jiangmiao/auto-pairs remapped <M-e>
, which affected the key. There is most likely other mappings that are equivalent to other non-English letters as well, which can explain what happens when similar keys break on other keyboards.
I screwed up slightly on which :verbose map
to use. Since it's while editing, and the relevant mapping is imap
or inoremap
, :verbose imap
/:verbose map!
would be the right command.
In this case, the reason I had such weird behavior is because of the function it's mapped to. It calls a function in a parentheses auto-completion/utility library, and specifically the fast wrap feature (which wraps words in parentheses - I haven't used that feature much).
Running :verbose imap å
or :verbose map! å
gave me this:
i å *@<C-R>=AutoPairsFastWrap()<CR>
Last set from ~.vimpluggedauto-pairspluginauto-pairs.vim line 562
In this case, the plugin used is jiangmiao/auto-pairs. The block that set the shortcut looks like this:
if g:AutoPairsShortcutFastWrap != ''
execute 'inoremap <buffer> <silent> '.g:AutoPairsShortcutFastWrap.' <C-R>=AutoPairsFastWrap()<CR>'
end
By default, the shortcut is set to <M-e>
, but that in itself doesn't necessarily make sense, especially with the mapping. If, however, you type <M-e>
when it's not remapped, it outputs å
. <C-v> <M-e>
also gives å
this might be keyboard-dependent - I'm not sure and I can't test it. So the library remapping <M-e>
resulted in å
being remapped to a function that when provided sensible input works fine, but when provided none or invalid input results in the weird behavior I saw.
The reason I couldn't override it is because the original remapping was done with <buffer>
, which seems to override the global ones. I think that's the reason imap å å
didn't work. With imap <buffer> å å
, it outputs å instead of calling the plugin functon that originally defined it.
That being said, there's a relatively easy fix to this that doesn't require any remapping of å
, but rather remapping the library. The code I showed earlier uses g:AutoPairsShortcutFastWrap
, which defines which key it'll map to. I just decided on <C-f>
, but any unused shortcut will do:
let g:AutoPairsShortcutFastWrap = "<C-f>"
After reloading Vim, å
works as a normal letter again.
TL;DR: <M-e>
is å
(<C-v> <M-e>
gives me å
at least), jiangmiao/auto-pairs remapped <M-e>
, which affected the key. There is most likely other mappings that are equivalent to other non-English letters as well, which can explain what happens when similar keys break on other keyboards.
answered 5 hours ago
ZoeZoe
1808 bronze badges
1808 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Vi and Vim Stack Exchange!
- 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%2fvi.stackexchange.com%2fquestions%2f20995%2fhow-do-i-remap-%25c3%25a5-to-type-%25c3%25a5%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
:verbose map
shows the mappings for normal, visual, select, and operator-pending mode. For insert mode mappings you need to use:verbose imap
or:verbose map!
(see:help map-modes
).– Jürgen Krämer
8 hours ago
1
@JürgenKrämer Right, I keep mixing those up ^^" å was actually remapped by a plugin (github.com/jiangmiao/auto-pairs). For a quick hackish test, disabling it fixed the letter, so I'll just have to see if I can avoid that specific mapping with some config. Also, does it make sense to keep the question or should I just delete it?
– Zoe
8 hours ago
2
@Zoe You should self-answer, indicate how you found the mapping existed and how you found which plug-in set the mapping. If you find more about how it set it and why, include that in your answer as well...
– filbranden
8 hours ago
Done. Thanks again ^^
– Zoe
5 hours ago
1
Thank you @Zoe for digging into this and writing such a detailed answer!
– filbranden
1 hour ago