mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 02:34:59 -07:00
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
d9e9f89e0f
Co-authored-by: Shougo Matsushita <Shougo.Matsu@gmail.com>
This commit is contained in:
parent
668d2569b4
commit
f3fa6507f2
@ -4059,6 +4059,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
milliseconds so the user has a chance to read the
|
||||
message, use 0 to disable sleep (but then the user may
|
||||
miss an important message).
|
||||
The maximum value is 10000.
|
||||
|
||||
history:{n} Determines how many entries are remembered in the
|
||||
|:messages| history. The maximum value is 10000.
|
||||
|
1
runtime/lua/vim/_meta/options.lua
generated
1
runtime/lua/vim/_meta/options.lua
generated
@ -4095,6 +4095,7 @@ vim.go.mis = vim.go.menuitems
|
||||
--- milliseconds so the user has a chance to read the
|
||||
--- message, use 0 to disable sleep (but then the user may
|
||||
--- miss an important message).
|
||||
--- The maximum value is 10000.
|
||||
---
|
||||
--- history:{n} Determines how many entries are remembered in the
|
||||
--- `:messages` history. The maximum value is 10000.
|
||||
|
@ -1103,6 +1103,11 @@ int messagesopt_changed(void)
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
// "wait" must be <= 10000
|
||||
if (messages_wait_new > 10000) {
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
msg_flags = messages_flags_new;
|
||||
msg_wait = messages_wait_new;
|
||||
|
||||
|
@ -5467,6 +5467,7 @@ return {
|
||||
milliseconds so the user has a chance to read the
|
||||
message, use 0 to disable sleep (but then the user may
|
||||
miss an important message).
|
||||
The maximum value is 10000.
|
||||
|
||||
history:{n} Determines how many entries are remembered in the
|
||||
|:messages| history. The maximum value is 10000.
|
||||
|
@ -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']],
|
||||
|
Loading…
Reference in New Issue
Block a user