neovim

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

commit dd8ebea01e26445d540272147f317b6f0b3cfff4
parent 143a1783328074a5167d9619aff2a8ee9c2ca481
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Thu,  4 May 2023 12:28:51 +0800

vim-patch:9.0.0609: blockedit test fails because of wrong indent

Problem:    Blockedit test fails because of wrong indent.
Solution:   Adjust the expected text temporarily

https://github.com/vim/vim/commit/66000ff9af8e3de93825ce7baa0c43727465eca5

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

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

diff --git a/test/old/testdir/test_blockedit.vim b/test/old/testdir/test_blockedit.vim @@ -29,9 +29,10 @@ func Test_blockinsert_autoindent() setlocal sw=2 et ft=vim setlocal indentkeys+=: exe "norm! 2Gf)\<c-v>2jA: asdf\<esc>" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, } @@ -48,9 +49,10 @@ func Test_blockinsert_autoindent() call setline(1, lines) setlocal sw=8 noet exe "norm! 2Gf)\<c-v>2jA: asdf\<esc>" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, }