From 4c5a2e8ebfab9a91fea8f6750354d202ea7ac48a Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 21 Apr 2022 06:08:36 +0800 Subject: [PATCH] vim-patch:8.2.4796: file left behind after running cursorline tests Problem: File left behind after running cursorline tests. Solution: Uncomment the line that deletes the file. https://github.com/vim/vim/commit/da1050cd6fbb67cfde5b4a149d8d9db80bb4351c --- src/nvim/testdir/test_cursorline.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/testdir/test_cursorline.vim b/src/nvim/testdir/test_cursorline.vim index 13ca320561..45593a2429 100644 --- a/src/nvim/testdir/test_cursorline.vim +++ b/src/nvim/testdir/test_cursorline.vim @@ -343,7 +343,7 @@ func Test_cursorline_cursorbind_horizontal_scroll() call VerifyScreenDump(buf, 'Test_hor_scroll_4', {}) call StopVimInTerminal(buf) - "call delete('Xhor_scroll') + call delete('Xhor_scroll') endfunc