From 0455af00e656b0f18854211e4547221178d64af8 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 16 Aug 2019 21:20:45 -0400 Subject: vim-patch:8.1.1858: test for multi-byte mapping fails on some systems Problem: Test for multi-byte mapping fails on some systems. Solution: Test in another way. https://github.com/vim/vim/commit/2f710afe7f166973c879bf7424678ba84368c1bb --- src/nvim/testdir/test_mapping.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/testdir/test_mapping.vim b/src/nvim/testdir/test_mapping.vim index 43bab8ae5c..5e080fc55e 100644 --- a/src/nvim/testdir/test_mapping.vim +++ b/src/nvim/testdir/test_mapping.vim @@ -231,7 +231,7 @@ endfunc func Test_map_meta_multibyte() imap foo - call assert_equal('foo', maparg("\", 'i')) + call assert_match('i \s*foo', execute('imap')) iunmap endfunc -- cgit