From f4ae6b245a54f11dd967d06b80f30e5abf55fb82 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 30 May 2020 19:52:46 +0200 Subject: patch 8.2.0851: can't distinguish from accented "a" in the GUI Problem: Can't distinguish from accented "a" in the GUI. Solution: Use another way to make mapping work. (closes #6163) --- src/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui.c') diff --git a/src/gui.c b/src/gui.c index a7216fcf6e..3df9921484 100644 --- a/src/gui.c +++ b/src/gui.c @@ -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()) -- cgit v1.2.3