neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 181097e4434bbbd7482fd238a67c1e65f002e3ff
parent f3b44cf23d9c240471826e4f35555ee85ded1e5b
Author: Luuk van Baal <luukvbaal@gmail.com>
Date:   Wed, 26 Apr 2023 16:46:51 +0200

vim-patch:9.0.0654: breakindent test fails

Problem:    Breakindent test fails.
Solution:   Temporarily accept wrong result.

https://github.com/vim/vim/commit/ec32c781a282398e3da27f4aec4b03fcd20f8b0d

Co-authored-by: Bram Moolenaar <Bram@vim.org>

Diffstat:
Mtest/old/testdir/test_breakindent.vim | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/test/old/testdir/test_breakindent.vim b/test/old/testdir/test_breakindent.vim @@ -726,8 +726,9 @@ func Test_breakindent20_cpo_n_nextpage() norm! 5gj redraw! let lines = s:screen_lines(1, 20) + " FIXME: this is not the right result let expect = [ - \ "<<< aaaaaaaaaaaaaaaa", + \ "<<<aaaaaaaaaaaaaaaaa", \ " aaaaaaaaaaaaaaaa", \ " aaaaaaaaaaaaaaaa", \ ] @@ -745,8 +746,9 @@ func Test_breakindent20_cpo_n_nextpage() " Scroll down one screen line norm! 5gj let lines = s:screen_lines(1, 20) ++ " FIXME: this is not the right result let expect = [ - \ "<<< aaaaaaaaaaaaaa", + \ "<<<aaaaaaaaaaaaaaaaa", \ " aaaaaaaaaaaaaa", \ " aaaaaaaaaaaaaa", \ ]