summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim/_meta/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-04-14 08:21:50 +0800
committerzeertzjq <zeertzjq@outlook.com>2025-04-14 08:22:29 +0800
commit0f4623d3464d9fa8a9130255fc5d386705fb15e8 (patch)
tree3f80a69d18df978d0b731ce8daca03933825ce67 /runtime/lua/vim/_meta/options.lua
parent52be3b14e37fc357d512c51e1aa8172ce6d03acb (diff)
vim-patch:f4b1a60: runtime(doc): update options.txt and clarify 'wildmode' further
related: vim/vim#17100 https://github.com/vim/vim/commit/f4b1a60dd145c8dddd2b6a37699e96772cd69402 Co-authored-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Girish Palya <girishji@gmail.com>
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r--runtime/lua/vim/_meta/options.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua
index a6de9d8273..31bcc6485b 100644
--- a/runtime/lua/vim/_meta/options.lua
+++ b/runtime/lua/vim/_meta/options.lua
@@ -7778,7 +7778,7 @@ vim.go.wmnu = vim.go.wildmenu
--- applies to buffer name completion.
--- "noselect" If 'wildmenu' is enabled, show the menu but do not
--- preselect the first item.
---- If only one match exists, it is completed fully—unless "noselect" is
+--- If only one match exists, it is completed fully, unless "noselect" is
--- specified.
---
--- Some useful combinations of colon-separated values:
@@ -7835,7 +7835,7 @@ vim.go.wmnu = vim.go.wildmenu
--- ```vim
--- set wildmode=noselect:lastused,full
--- ```
---- Same as above, but buffer matches are sorted by last used
+--- Same as above, but buffer matches are sorted by time last used
--- More info here: `cmdline-completion`.
---
--- @type string