Mercurial > vim
changeset 8813:b92938076e40 v7.4.1694
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 2 15:59:40 2016 +0200
patch 7.4.1694
Problem: Win32 gvim doesn't work with "dvorakj" input method.
Solution: Wait for QS_ALLINPUT instead of QS_ALLEVENTS. (Yukihiro Nakadaira)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 02 Apr 2016 16:00:05 +0200 |
parents | 5d8c3d12b288 |
children | 90ecdec2a99b |
files | src/gui_w32.c src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -2218,7 +2218,7 @@ gui_mch_wait_for_chars(int wtime) parse_queued_messages(); if (pPeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) - || MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLEVENTS) + || MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLINPUT) != WAIT_TIMEOUT) break; }