aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/doc/options.txt8
-rw-r--r--runtime/lua/vim/_meta/options.lua8
-rw-r--r--src/nvim/options.lua8
3 files changed, 12 insertions, 12 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 4560eff6e8..dd1947498f 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1520,10 +1520,10 @@ A jump table for the options with a short description can be found at |Q_op|.
*'completeitemalign'* *'cia'*
'completeitemalign' 'cia' string (default "abbr,kind,menu")
global
- 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.
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua
index cd014978b0..c02be39e0a 100644
--- a/runtime/lua/vim/_meta/options.lua
+++ b/runtime/lua/vim/_meta/options.lua
@@ -1044,10 +1044,10 @@ vim.o.cfu = vim.o.completefunc
vim.bo.completefunc = vim.o.completefunc
vim.bo.cfu = vim.bo.completefunc
---- 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.
---
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.
]=],