aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/mapping_spec.lua
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-02-18 13:16:30 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-02-18 13:16:30 -0300
commite7c945ab597aff7af2611ca9bffa4a11e18c0a87 (patch)
tree45e87e5fb1755ce2cdbc5a47e85c43fd40704395 /test/functional/legacy/mapping_spec.lua
parent25ceadab37edba13f5afa78d8b4723da03ef35f0 (diff)
downloadrneovim-e7c945ab597aff7af2611ca9bffa4a11e18c0a87.tar.gz
rneovim-e7c945ab597aff7af2611ca9bffa4a11e18c0a87.tar.bz2
rneovim-e7c945ab597aff7af2611ca9bffa4a11e18c0a87.zip
input: Escape utf8 sequences that contain CSI/K_SPECIAL
Diffstat (limited to 'test/functional/legacy/mapping_spec.lua')
-rw-r--r--test/functional/legacy/mapping_spec.lua5
1 files changed, 3 insertions, 2 deletions
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чкпр <cr><esc>')
+ feed('GAчкпр <esc>')
-- langmap should not get remapped in insert mode.
execute('inoremap { FAIL_ilangmap')
@@ -27,10 +27,11 @@ describe('mapping', function()
execute('inoremap <expr> { "FAIL_iexplangmap"')
feed('o+<esc>')
+
-- Assert buffer contents.
expect([[
test starts here:
- vim
+ vim
+
+]])
end)