summaryrefslogtreecommitdiff
path: root/src/testdir/test_popupwin.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/testdir/test_popupwin.vim')
-rw-r--r--src/testdir/test_popupwin.vim6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index b6f718c84..42f4256c3 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -3349,7 +3349,11 @@ func Test_popupwin_filter_input_multibyte()
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