diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-04-10 06:07:04 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-10 06:07:04 +0800 |
| commit | f398552eb16c19c8410214ddcfa3980180818a58 (patch) | |
| tree | 704e842e0ab19d4980f11e62492047ed820499b6 /test/old/testdir/test_scroll_opt.vim | |
| parent | 4946489e2e3eeca5c831faf9fe86cbf1229701e2 (diff) | |
| parent | d4956e16d9e510b0f8aa9d65ef98ea36dfc5613d (diff) | |
| download | rneovim-f398552eb16c19c8410214ddcfa3980180818a58.tar.gz rneovim-f398552eb16c19c8410214ddcfa3980180818a58.tar.bz2 rneovim-f398552eb16c19c8410214ddcfa3980180818a58.zip | |
Merge pull request #28256 from luukvbaal/vim-9.1.0285
vim-patch:9.1.{0285,0294}
Diffstat (limited to 'test/old/testdir/test_scroll_opt.vim')
| -rw-r--r-- | test/old/testdir/test_scroll_opt.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/old/testdir/test_scroll_opt.vim b/test/old/testdir/test_scroll_opt.vim index cb37b09707..50b0e13ba4 100644 --- a/test/old/testdir/test_scroll_opt.vim +++ b/test/old/testdir/test_scroll_opt.vim @@ -1031,10 +1031,10 @@ func Test_smoothscroll_page() call assert_equal(415, col('.')) exe "norm! \<C-D>" call assert_equal(520, winsaveview().skipcol) - call assert_equal(535, col('.')) + call assert_equal(615, col('.')) exe "norm! \<C-D>" call assert_equal(520, winsaveview().skipcol) - call assert_equal(735, col('.')) + call assert_equal(815, col('.')) exe "norm! \<C-D>" call assert_equal(520, winsaveview().skipcol) call assert_equal(895, col('.')) @@ -1046,10 +1046,10 @@ func Test_smoothscroll_page() call assert_equal(495, col('.')) exe "norm! \<C-U>" call assert_equal(0, winsaveview().skipcol) - call assert_equal(375, col('.')) + call assert_equal(295, col('.')) exe "norm! \<C-U>" call assert_equal(0, winsaveview().skipcol) - call assert_equal(175, col('.')) + call assert_equal(95, col('.')) exe "norm! \<C-U>" call assert_equal(0, winsaveview().skipcol) call assert_equal(15, col('.')) |