Hirohito Higashi wrote: > 2016-4-1(Fri) 12:22:07 UTC+9 mattn: > > From a report by someone. > > > > On windows, gvim doesn't work correctly with using input method called > > "dvorakj" > > > > http://blechmusik.xii.jp/dvorakj/ > > > > This input method work with typing few keys at the same time. Using gvim on > > windows, the letters that doesn't typed at the same time are sometimes > > recognied as typing at the same time. Because current implementation are > > waiting events with: > > > > MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLEVENTS) > > > > But QS_ALLEVENTS doesn't contain keyboard inputs. This should be: > > > > MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLEVENTS) > > Probably typo. > s/QS_ALLEVENTS/QS_ALLINPUT/ > > > > > https://gist.github.com/mattn/70305daecfc78a5a82d8fe77416c1a23 > > Yes. I find typos no longer in the patch. > > > > > This patch was written by Yukihiro Nakadaira.
Thanks! -- hundred-and-one symptoms of being an internet addict: 192. Your boss asks you to "go fer" coffee and you come up with 235 FTP sites. /// 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.
