diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-03 07:21:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 07:21:09 +0800 |
commit | 62ecb05957f43b140e7dd874e1f84e3a6fa99838 (patch) | |
tree | 3bc2cb1f7ff44fe51f0973af513bd1c68cecd571 /test/functional/ui/diff_spec.lua | |
parent | 9909668111f521c7fc829ec8d8aa89beafff8777 (diff) | |
download | rneovim-62ecb05957f43b140e7dd874e1f84e3a6fa99838.tar.gz rneovim-62ecb05957f43b140e7dd874e1f84e3a6fa99838.tar.bz2 rneovim-62ecb05957f43b140e7dd874e1f84e3a6fa99838.zip |
vim-patch:9.0.1506: line number not displayed when using 'smoothscroll' (#23453)
Problem: Line number not displayed when using 'smoothscroll'.
Solution: Adjust condition for showing the line number. (closes vim/vim#12333)
https://github.com/vim/vim/commit/88bb3e0a48f160134bdea98cd2b8bd3af86f9d6f
Diffstat (limited to 'test/functional/ui/diff_spec.lua')
-rw-r--r-- | test/functional/ui/diff_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/ui/diff_spec.lua b/test/functional/ui/diff_spec.lua index dbdf3823ec..0f551e3044 100644 --- a/test/functional/ui/diff_spec.lua +++ b/test/functional/ui/diff_spec.lua @@ -1325,6 +1325,7 @@ it('win_update redraws lines properly', function() ]]} end) +-- oldtest: Test_diff_rnu() it('diff updates line numbers below filler lines', function() clear() local screen = Screen.new(40, 14) @@ -1401,6 +1402,7 @@ it('diff updates line numbers below filler lines', function() ]]) end) +-- oldtest: Test_diff_with_scroll_and_change() it('Align the filler lines when changing text in diff mode', function() clear() local screen = Screen.new(40, 20) |