diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-05-02 19:42:31 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-02 19:42:31 +0800 |
| commit | 808752f1b09d2f03af5b58167602fef8320c11dc (patch) | |
| tree | 0cf72ae00bd1b08053daee0ede8aa5495be704f0 /test/old/testdir/test_diffmode.vim | |
| parent | fba18a3b62310f4535d979a05288101b9af2ef50 (diff) | |
| parent | 5b111a8f00f8dbe458a3d437c9f06c9419d24840 (diff) | |
| download | rneovim-808752f1b09d2f03af5b58167602fef8320c11dc.tar.gz rneovim-808752f1b09d2f03af5b58167602fef8320c11dc.tar.bz2 rneovim-808752f1b09d2f03af5b58167602fef8320c11dc.zip | |
Merge pull request #23320 from luukvbaal/smoothscroll
feat(ui): add 'smoothscroll' option
Diffstat (limited to 'test/old/testdir/test_diffmode.vim')
| -rw-r--r-- | test/old/testdir/test_diffmode.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/old/testdir/test_diffmode.vim b/test/old/testdir/test_diffmode.vim index 0049398776..ac90aaaa02 100644 --- a/test/old/testdir/test_diffmode.vim +++ b/test/old/testdir/test_diffmode.vim @@ -1605,6 +1605,21 @@ func Test_diff_scroll() call delete('Xright') endfunc +" This was scrolling too many lines. +func Test_diff_scroll_wrap_on() + 20new + 40vsplit + call setline(1, map(range(1, 9), 'repeat(v:val, 200)')) + setlocal number diff so=0 + redraw + normal! jj + call assert_equal(1, winsaveview().topline) + normal! j + call assert_equal(2, winsaveview().topline) + bwipe! + bwipe! +endfunc + " This was trying to update diffs for a buffer being closed func Test_diff_only() silent! lfile |