changeset 20937:a02ba6be5a84 v8.2.1020

patch 8.2.1020: popupwin test fails in the GUI Commit: https://github.com/vim/vim/commit/b326edf5b30813b2ccdee3ac07ee6495ca5187ff Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 20 15:03:38 2020 +0200 patch 8.2.1020: popupwin test fails in the GUI Problem: Popupwin test fails in the GUI. Solution: Send GUI byte sequence for <C-S-a>.
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 Jun 2020 15:15:03 +0200
parents c09e47fc4021
children e14681ebc6e3
files src/testdir/test_popupwin.vim src/version.c
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -3349,7 +3349,11 @@ func Test_popupwin_filter_input_multibyt
 
   if has('unix')
     " with modifyOtherKeys <M-S-a> does not include a modifier sequence
-    call feedkeys("\<Esc>[27;4;65~", 'Lx!')
+    if has('gui_running')
+      call feedkeys("\x9b\xfc\x08A", 'Lx!')
+    else
+      call feedkeys("\<Esc>[27;4;65~", 'Lx!')
+    endif
     call assert_equal([0xc3, 0x81], g:bytes)
   endif
 
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1020,
+/**/
     1019,
 /**/
     1018,