diff src/testdir/test_scroll_opt.vim @ 30677:a345ad853b08 v9.0.0673

patch 9.0.0673: first line wong with 'smoothscroll' and 'scrolloff' zero Commit: https://github.com/vim/vim/commit/46b54747c5d252c584571a321231bad9330018ec Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 6 15:46:49 2022 +0100 patch 9.0.0673: first line wong with 'smoothscroll' and 'scrolloff' zero Problem: First line not scrolled properly with 'smoothscroll' and 'scrolloff' zero and using "k". Solution: Make sure the cursor position is visible.
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Oct 2022 17:00:04 +0200
parents bc48f3752d8d
children 5bea8e583d28
line wrap: on
line diff
--- a/src/testdir/test_scroll_opt.vim
+++ b/src/testdir/test_scroll_opt.vim
@@ -181,6 +181,7 @@ func Test_smoothscroll_wrap_scrolloff_ze
 
   call VerifyScreenDump(buf, 'Test_smooth_wrap_1', {})
 
+  " moving cursor down - whole bottom line shows
   call term_sendkeys(buf, "j")
   call VerifyScreenDump(buf, 'Test_smooth_wrap_2', {})
 
@@ -190,6 +191,10 @@ func Test_smoothscroll_wrap_scrolloff_ze
   call term_sendkeys(buf, "G")
   call VerifyScreenDump(buf, 'Test_smooth_wrap_4', {})
 
+  " moving cursor up - whole top line shows
+  call term_sendkeys(buf, "2k")
+  call VerifyScreenDump(buf, 'Test_smooth_wrap_5', {})
+
   call StopVimInTerminal(buf)
 endfunc