diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-12-08 07:00:17 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-12-08 07:01:50 +0800 |
commit | f3fa6507f2473d66a4c6172c82dec43bf55f8df6 (patch) | |
tree | 861d5a8e8547ce3c955aec0d4223b1986dd4b255 /test | |
parent | 668d2569b4109e7e83c45578c506c1c64dbd5e87 (diff) | |
download | rneovim-f3fa6507f2473d66a4c6172c82dec43bf55f8df6.tar.gz rneovim-f3fa6507f2473d66a4c6172c82dec43bf55f8df6.tar.bz2 rneovim-f3fa6507f2473d66a4c6172c82dec43bf55f8df6.zip |
vim-patch:9.1.0910: 'messagesopt' does not check max wait time
Problem: 'messagesopt' does not check max wait time
(after v9.1.0908)
Solution: Check for max wait value
(Shougo Matsushita)
closes: vim/vim#16183
https://github.com/vim/vim/commit/d9e9f89e0ffd6e7ce5e2a7f8f1ace5471e37c210
Co-authored-by: Shougo Matsushita <Shougo.Matsu@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/gen_opt_test.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/old/testdir/gen_opt_test.vim b/test/old/testdir/gen_opt_test.vim index 74aea93ee9..22ffde5269 100644 --- a/test/old/testdir/gen_opt_test.vim +++ b/test/old/testdir/gen_opt_test.vim @@ -267,7 +267,8 @@ let test_values = { \ 'history:100,wait:100', 'history:0,wait:0', \ 'hit-enter,history:1,wait:1'], \ ['xxx', 'history:500', 'hit-enter,history:-1', - \ 'hit-enter,history:10001', 'hit-enter']], + \ 'hit-enter,history:10001', 'history:0,wait:10001', + \ 'hit-enter']], \ 'mkspellmem': [['10000,100,12'], ['', 'xxx', '10000,100']], \ 'mouse': [['', 'n', 'v', 'i', 'c', 'h', 'a', 'r', 'nvi'], \ ['xxx', 'n,v,i']], |