comparison src/gui.c @ 20633:244ef6caf671 v8.2.0870

patch 8.2.0870: MS-Windows: Control keys don't work in the GUI Commit: https://github.com/vim/vim/commit/ad772a63ec3bc86fe9d53cba783812f53470a313 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 14:07:49 2020 +0200 patch 8.2.0870: MS-Windows: Control keys don't work in the GUI Problem: MS-Windows: Control keys don't work in the GUI. Solution: Don't set seenModifyOtherKeys for now. (Yasuhiro Matsumoto, closes #6175)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 14:15:04 +0200
parents 3609e842f822
children fcccc29bd386
comparison
equal deleted inserted replaced
20632:f8940db0dd14 20633:244ef6caf671
801 # endif 801 # endif
802 # endif 802 # endif
803 if (!p_beval) 803 if (!p_beval)
804 gui_mch_disable_beval_area(balloonEval); 804 gui_mch_disable_beval_area(balloonEval);
805 #endif 805 #endif
806
807 #ifndef FEAT_GUI_MSWIN
806 // In the GUI modifiers are prepended to keys. 808 // In the GUI modifiers are prepended to keys.
809 // Don't do this for MS-Windows yet, it sends CTRL-K without the
810 // modifier.
807 seenModifyOtherKeys = TRUE; 811 seenModifyOtherKeys = TRUE;
812 #endif
808 813
809 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) 814 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
810 if (!im_xim_isvalid_imactivate()) 815 if (!im_xim_isvalid_imactivate())
811 emsg(_("E599: Value of 'imactivatekey' is invalid")); 816 emsg(_("E599: Value of 'imactivatekey' is invalid"));
812 #endif 817 #endif