diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-31 19:13:45 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-31 19:13:45 +0800 |
| commit | 380417c1ddbd90b084ed27f321b575de34998a9b (patch) | |
| tree | 99171207e25340bc6bb1b3466f5c192d50d03a4f /src/nvim/testdir/test_window_cmd.vim | |
| parent | abc087f4c65ca547cae58518b42aee82ff4a07f6 (diff) | |
| parent | 2c522854c78d4e02d7337cf0b06174387f7f4583 (diff) | |
| download | rneovim-380417c1ddbd90b084ed27f321b575de34998a9b.tar.gz rneovim-380417c1ddbd90b084ed27f321b575de34998a9b.tar.bz2 rneovim-380417c1ddbd90b084ed27f321b575de34998a9b.zip | |
Merge pull request #19587 from Shougo/vim-9.0.0114
vim-patch:9.0.{0114,0115,0118}
Diffstat (limited to 'src/nvim/testdir/test_window_cmd.vim')
| -rw-r--r-- | src/nvim/testdir/test_window_cmd.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_window_cmd.vim b/src/nvim/testdir/test_window_cmd.vim index 3bfff0a577..d96fc2d789 100644 --- a/src/nvim/testdir/test_window_cmd.vim +++ b/src/nvim/testdir/test_window_cmd.vim @@ -1390,11 +1390,9 @@ func Test_win_move_statusline() call assert_equal(h0, winheight(0)) call assert_equal(1, &cmdheight) endfor - " Nvim supports cmdheight=0 + " supports cmdheight=0 set cmdheight=0 call assert_true(win_move_statusline(0, 1)) - "call assert_equal(h0, winheight(0)) - "call assert_equal(1, &cmdheight) call assert_equal(h0 + 1, winheight(0)) call assert_equal(0, &cmdheight) set cmdheight& |