aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/eval_spec.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-03-23 11:58:47 +0100
committerbfredl <bjorn.linse@gmail.com>2022-03-24 11:02:39 +0100
commited88ca75034a48916d165e88459c791c450df550 (patch)
treefcb649f147d87f1878cc20cc5260840f05efdbad /test/functional/legacy/eval_spec.lua
parentd7488bf38677b5d6b1df3a88e45b3d2f21527eb4 (diff)
downloadrneovim-ed88ca75034a48916d165e88459c791c450df550.tar.gz
rneovim-ed88ca75034a48916d165e88459c791c450df550.tar.bz2
rneovim-ed88ca75034a48916d165e88459c791c450df550.zip
feat(input): enable <tab>/<c-i>, <cr>/<c-m>, <esc>/<c-[> pairs unconditionally
Diffstat (limited to 'test/functional/legacy/eval_spec.lua')
-rw-r--r--test/functional/legacy/eval_spec.lua7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/functional/legacy/eval_spec.lua b/test/functional/legacy/eval_spec.lua
index e41410db6f..d3c0b4b938 100644
--- a/test/functional/legacy/eval_spec.lua
+++ b/test/functional/legacy/eval_spec.lua
@@ -35,10 +35,7 @@ describe('eval', function()
endfun
]])
end)
- before_each(function()
- clear()
- command('set noctrldisambig')
- end)
+ before_each(clear)
teardown(function()
os.remove('test_eval_setup.vim')
end)
@@ -49,7 +46,7 @@ describe('eval', function()
command('AR "')
command([[let @" = "abc\n"]])
source('AR "')
- command([[let @" = "abc\<C-m>"]])
+ command([[let @" = "abc\r"]])
command('AR "')
command([[let @= = '"abc"']])
command('AR =')