mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
input: Remove CURSORHOLD key
Refactor input.c, normal.c and edit.c to use the K_EVENT special key to trigger the CURSORHOLD event. In normal and edit mode, K_EVENT is treated as K_CURSORHOLD, which enables better handling of arbitrary actions in those states(eg: In normal mode the previous operator counts will be restored). Also fix a test in vim_spec.lua. The test had a wrong assumption: cmdheight is only used to determine when the press enter screen will be shown, not to limit how many lines or control pagination.
This commit is contained in:
@@ -247,33 +247,21 @@ describe('vim_* functions', function()
|
||||
~ |
|
||||
{1:very fail} |
|
||||
]])
|
||||
helpers.wait()
|
||||
|
||||
-- shows up to &cmdheight lines
|
||||
nvim_async('err_write', 'more fail\n')
|
||||
nvim_async('err_write', 'too fail\n')
|
||||
nvim_async('err_write', 'more fail\ntoo fail\n')
|
||||
screen:expect([[
|
||||
~ |
|
||||
~ |
|
||||
~ |
|
||||
~ |
|
||||
~ |
|
||||
{1:very fail} |
|
||||
{1:more fail} |
|
||||
{2:Press ENTER or type command to continue}^ |
|
||||
]])
|
||||
|
||||
-- shows the rest after return
|
||||
feed('<cr>')
|
||||
screen:expect([[
|
||||
~ |
|
||||
~ |
|
||||
~ |
|
||||
{1:very fail} |
|
||||
{1:more fail} |
|
||||
{2:Press ENTER or type command to continue} |
|
||||
{1:too fail} |
|
||||
{2:Press ENTER or type command to continue}^ |
|
||||
]])
|
||||
feed('<cr>') -- exit the press ENTER screen
|
||||
end)
|
||||
end)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user