From f494ce77f133c95df471791da554a71d761c7b4f Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 15 Dec 2025 09:06:13 +0800 Subject: [PATCH] vim-patch:9.1.1978: tests: Test_smoothscroll_number() may fail (#36965) Problem: tests: Test_smoothscroll_number() may fail because of 'showcmd' Solution: Send redraw command (Hirohito Higashi) closes: vim/vim#18921 https://github.com/vim/vim/commit/5193375b10bee038aa197c44602e1a5cf2dba6bf Co-authored-by: Hirohito Higashi --- test/old/testdir/test_scroll_opt.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/old/testdir/test_scroll_opt.vim b/test/old/testdir/test_scroll_opt.vim index 081143fe7e..eb073d3628 100644 --- a/test/old/testdir/test_scroll_opt.vim +++ b/test/old/testdir/test_scroll_opt.vim @@ -237,7 +237,7 @@ func Test_smoothscroll_number() call term_sendkeys(buf, "\") call VerifyScreenDump(buf, 'Test_smooth_number_6', {}) - call term_sendkeys(buf, ":botright split\gg") + call term_sendkeys(buf, ":botright split\\gg") call VerifyScreenDump(buf, 'Test_smooth_number_7', {}) call term_sendkeys(buf, "\") call VerifyScreenDump(buf, 'Test_smooth_number_8', {})