aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-10-17 07:28:25 +0800
committerGitHub <noreply@github.com>2024-10-17 07:28:25 +0800
commit852954ff6d96adce0158f74ca494fdcef3aa1921 (patch)
treec8879510c6c130f0ce3c1db9eeb0c178d1fe6cb7
parent80e37aa533573ef1ad96bcccc006b8d45dc963b9 (diff)
downloadrneovim-852954ff6d96adce0158f74ca494fdcef3aa1921.tar.gz
rneovim-852954ff6d96adce0158f74ca494fdcef3aa1921.tar.bz2
rneovim-852954ff6d96adce0158f74ca494fdcef3aa1921.zip
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>
-rw-r--r--test/old/testdir/test_window_cmd.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_window_cmd.vim b/test/old/testdir/test_window_cmd.vim
index 50da2beb40..8048fa6ff8 100644
--- 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)