0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI

Problem:    Can't distinguish <M-a> from accented "a" in the GUI.
Solution:   Use another way to make mapping <C-bslash> work. (closes #6163)
This commit is contained in:
Bram Moolenaar
2020-05-30 19:52:46 +02:00
parent 95da136142
commit f4ae6b245a
4 changed files with 28 additions and 42 deletions

View File

@@ -803,8 +803,8 @@ gui_init(void)
if (!p_beval)
gui_mch_disable_beval_area(balloonEval);
#endif
// In case the terminal was used before ":gui".
seenModifyOtherKeys = FALSE;
// In the GUI modifiers are prepended to keys.
seenModifyOtherKeys = TRUE;
#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
if (!im_xim_isvalid_imactivate())