commit 852954ff6d96adce0158f74ca494fdcef3aa1921
parent 80e37aa533573ef1ad96bcccc006b8d45dc963b9
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu, 17 Oct 2024 07:28:25 +0800
vim-patch:9.1.0789: tests: ':resize + 5' has invalid space after '+' (#30835)
Problem: tests: ':resize + 5' has invalid space after '+'
Solution: Correct the test (Milly)
closes: vim/vim#15884
https://github.com/vim/vim/commit/c0cba184f54e052cf8f04baca24bdee72a4b7de6
Co-authored-by: Milly <milly.ca@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/old/testdir/test_window_cmd.vim b/test/old/testdir/test_window_cmd.vim
@@ -539,7 +539,7 @@ func Test_equalalways_on_close()
1wincmd w
split
4wincmd w
- resize + 5
+ resize +5
" left column has three windows, equalized heights.
" right column has two windows, top one a bit higher
let height_1 = winheight(1)