aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/edit_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/legacy/edit_spec.lua')
-rw-r--r--test/functional/legacy/edit_spec.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/functional/legacy/edit_spec.lua b/test/functional/legacy/edit_spec.lua
index d2ce80efda..eee232f2c8 100644
--- a/test/functional/legacy/edit_spec.lua
+++ b/test/functional/legacy/edit_spec.lua
@@ -92,4 +92,28 @@ describe('edit', function()
|
]])
end)
+
+ -- oldtest: Test_edit_CAR()
+ it('insert a newline when pressing Enter, even if the pum is visible', function()
+ local screen = Screen.new(10, 6)
+ command('set cot=menu,menuone,noselect')
+ feed('Shello hero<CR>h<C-X><C-N>e')
+ screen:expect([[
+ hello hero |
+ he^ |
+ {4:hello }|
+ {4:hero }|
+ {1:~ }|
+ {5:--} |
+ ]])
+
+ feed('<CR>')
+ screen:expect([[
+ hello hero |
+ he |
+ ^ |
+ {1:~ }|*2
+ {5:-- INSERT --}|
+ ]])
+ end)
end)