-*options.txt* For Vim version 9.1. Last change: 2024 Dec 06
+*options.txt* For Vim version 9.1. Last change: 2024 Dec 07
VIM REFERENCE MANUAL by Bram Moolenaar
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.
if (messages_history_new > 10000)
return FAIL;
+ // "wait" must be <= 10000
+ if (messages_wait_new > 10000)
+ return FAIL;
+
msg_flags = messages_flags_new;
msg_wait = messages_wait_new;
\ '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']],