tpope / vim-rsi

rsi.vim: Readline style insertion
http://www.vim.org/scripts/script.php?script_id=4359
583 stars 35 forks source link

german umlaut ä is overmapped #14

Open seebi opened 10 years ago

seebi commented 10 years ago

using vim-rsi, unfortunately I can not use my ä-key anymore ...

bruno- commented 10 years ago

That seems to be caused by <M-d> mapping here.

Here's how I debugged (classic US keyboard btw):

Theory why this happens (I'm not 100% sure on this):

I hope this helps. I don't know the solution.

tpope commented 10 years ago

I'm afraid the only solution will be an option to turn off the meta maps.

toupeira commented 9 years ago

Another option is to revert the <M-d> mapping in ~/.vim/after/plugin/rsi.vim:

iunmap <M-d>
cunmap <M-d>

if !has("gui_running")
  set <F31>=
  unmap! <F31>
  unmap <F31>
endif

edit: Just realized with Neovim this isn't necessary anymore.

ghost commented 6 years ago

This is also the case when using the danish keyboard layout, where vim-rsi breaks the "æ" key.