2024-04-20 08:44:13 -07:00
|
|
|
local n = require('test.functional.testnvim')()
|
2023-02-04 18:37:12 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
2024-04-20 08:44:13 -07:00
|
|
|
|
|
|
|
local clear = n.clear
|
|
|
|
local feed = n.feed
|
|
|
|
local fn = n.fn
|
2023-02-04 18:37:12 -07:00
|
|
|
|
|
|
|
before_each(clear)
|
|
|
|
|
|
|
|
describe(':move', function()
|
|
|
|
-- oldtest: Test_move_undo()
|
|
|
|
it('redraws correctly when undone', function()
|
|
|
|
local screen = Screen.new(60, 10)
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.setline(1, { 'First', 'Second', 'Third', 'Fourth' })
|
2023-02-04 18:37:12 -07:00
|
|
|
feed('gg:move +1<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
Second |
|
|
|
|
^First |
|
|
|
|
Third |
|
|
|
|
Fourth |
|
2024-03-27 02:35:50 -07:00
|
|
|
{1:~ }|*5
|
2023-02-04 18:37:12 -07:00
|
|
|
:move +1 |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- here the display would show the last few lines scrolled down
|
|
|
|
feed('u')
|
|
|
|
feed(':<Esc>')
|
|
|
|
screen:expect([[
|
|
|
|
^First |
|
|
|
|
Second |
|
|
|
|
Third |
|
|
|
|
Fourth |
|
2024-03-27 02:35:50 -07:00
|
|
|
{1:~ }|*5
|
2023-02-04 18:37:12 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
end)
|