From e7c945ab597aff7af2611ca9bffa4a11e18c0a87 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Wed, 18 Feb 2015 13:16:30 -0300 Subject: input: Escape utf8 sequences that contain CSI/K_SPECIAL --- test/functional/legacy/mapping_spec.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/functional/legacy') diff --git a/test/functional/legacy/mapping_spec.lua b/test/functional/legacy/mapping_spec.lua index 1451b268c5..c387d7484c 100644 --- a/test/functional/legacy/mapping_spec.lua +++ b/test/functional/legacy/mapping_spec.lua @@ -16,7 +16,7 @@ describe('mapping', function() -- Abbreviations with р (0x80) should work. execute('inoreab чкпр vim') - feed('GAчкпр ') + feed('GAчкпр ') -- langmap should not get remapped in insert mode. execute('inoremap { FAIL_ilangmap') @@ -27,10 +27,11 @@ describe('mapping', function() execute('inoremap { "FAIL_iexplangmap"') feed('o+') + -- Assert buffer contents. expect([[ test starts here: - vim + vim + +]]) end) -- cgit