diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 1 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 0db7b0f03c..7899f40e24 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -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. diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 59d270e640..e38fa4a89f 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -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. |