aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-02-28 08:28:24 +0800
committerGitHub <noreply@github.com>2025-02-28 08:28:24 +0800
commitda219960cbe429e5888d742719585917eb166321 (patch)
tree8c964945fe1c515668155d9fe971177a218a39b0 /src
parent567ab3c34fea43dfb0836a7b7f4bf9c202bf3eb8 (diff)
downloadrneovim-da219960cbe429e5888d742719585917eb166321.tar.gz
rneovim-da219960cbe429e5888d742719585917eb166321.tar.bz2
rneovim-da219960cbe429e5888d742719585917eb166321.zip
vim-patch:85a50fe: runtime(doc): fix confusing docs for 'completeitemalign' (#32671)
closes: vim/vim#16743 https://github.com/vim/vim/commit/85a50fe825ba11a35ce654f7313b4350e3ba4b52
Diffstat (limited to 'src')
-rw-r--r--src/nvim/options.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 36799e9a24..0dc24f5eef 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -1466,10 +1466,10 @@ local options = {
flags = true,
deny_duplicates = true,
desc = [=[
- A comma-separated list of |complete-items| that controls the alignment
- and display order of items in the popup menu during Insert mode
- completion. The supported values are abbr, kind, and menu. These
- options allow to customize how the completion items are shown in the
+ A comma-separated list of strings that controls the alignment and
+ display order of items in the popup menu during Insert mode
+ completion. The supported values are "abbr", "kind", and "menu".
+ These values allow customizing how |complete-items| are shown in the
popup menu. Note: must always contain those three values in any
order.
]=],