Yasuhiro Matsumoto wrote: > When using vim.exe with encoding=cp932 (Shift_JIS encoding) > I can't input 0xCE (ホ). Because K_NUL is same value. > It seems that some characters are registered as mappings. I want to > change the value of K_NUL. For example 0xFF. > > https://gist.github.com/mattn/b6341a1d272aa80431c5 > > How do you think?
What is supposed to happen is that 0xce is replaced by K_NUL 3. What is the reason that is not working? Perhaps the translation of 0xce to K_NUL and 3 is missing somewhere? Changing K_NUL to 0xff will only move the problem to another character. -- hundred-and-one symptoms of being an internet addict: 267. You get an extra phone line so you can get phone calls. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
