aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-12-08 07:01:59 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-12-08 07:06:16 +0800
commit96329910b011414758380e3c27e32c0ae7f43e1e (patch)
tree8cb2e83275826cb83d4ffcd45d062fa7c653cf6a /src/nvim/options.lua
parentf3fa6507f2473d66a4c6172c82dec43bf55f8df6 (diff)
downloadrneovim-96329910b011414758380e3c27e32c0ae7f43e1e.tar.gz
rneovim-96329910b011414758380e3c27e32c0ae7f43e1e.tar.bz2
rneovim-96329910b011414758380e3c27e32c0ae7f43e1e.zip
vim-patch:9.1.0911: Variable name for 'messagesopt' doesn't match short name
Problem: Variable name for 'messagesopt' doesn't match short name (after v9.1.0908) Solution: Change p_meo to p_mopt. Add more details to docs. closes: vim/vim#16182 https://github.com/vim/vim/commit/8cc43daee1f485c9abf1de3c638cce7835b9f861
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index e08f3d1410..afce4a918b 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -5456,22 +5456,24 @@ return {
flags = true,
deny_duplicates = true,
desc = [=[
- Option settings when outputting messages. It can consist of the
+ Option settings for outputting messages. It can consist of the
following items. Items must be separated by a comma.
- hit-enter Use |hit-enter| prompt when the message is longer than
+ hit-enter Use a |hit-enter| prompt when the message is longer than
'cmdheight' size.
- wait:{n} Ignored when "hit-enter" is present. Instead of using
- |hit-enter| prompt, will simply wait for {n}
- 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.
+ wait:{n} Instead of using a |hit-enter| prompt, simply wait for
+ {n} milliseconds so that the user has a chance to read
+ the message. The maximum value of {n} is 10000. Use
+ 0 to disable the wait (but then the user may miss an
+ important message).
+ This item is ignored when "hit-enter" is present, but
+ required when "hit-enter" is not present.
history:{n} Determines how many entries are remembered in the
|:messages| history. The maximum value is 10000.
Setting it to zero clears the message history.
+ This item must always be present.
]=],
expand_cb = 'expand_set_messagesopt',
full_name = 'messagesopt',
@@ -5479,7 +5481,7 @@ return {
scope = { 'global' },
short_desc = N_('options for outputting messages'),
type = 'string',
- varname = 'p_meo',
+ varname = 'p_mopt',
},
{
abbreviation = 'msm',