feat: adds M mapping in normal mode (#544)

This commit is contained in:
Hubert Pelczarski
2021-02-24 03:35:52 +01:00
committed by GitHub
parent 10627e889e
commit 67b0661537
4 changed files with 18 additions and 1 deletions

View File

@@ -112,7 +112,14 @@ describe('scroller', function()
end)
end)
describe('should give top and bottom index', function()
describe('should give top, middle and bottom index', function()
it('should handle middle index', function()
eq(5, p_scroller.middle(nil, 11, nil))
eq(10, p_scroller.middle(nil, 20, nil))
eq(12, p_scroller.middle(nil, 25, nil))
end)
it('should handle ascending', function()
eq(0, p_scroller.top('ascending', 20, 1000))
eq(19, p_scroller.bottom('ascending', 20, 1000))