aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/vvars.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-10-29 09:01:46 +0800
committerGitHub <noreply@github.com>2024-10-29 09:01:46 +0800
commit0e32c480604d76a319602656f2d8e2722497606e (patch)
treeb18deb6eaae322957f27ae87e134f7c8bb3ee5e9 /runtime/lua/vim/_meta/vvars.lua
parent42fa3d080ec170b7927e36ec563efdd526c712d7 (diff)
parent60b3ccd850ca038af6fc0a19cad12578f63d67ec (diff)
downloadrneovim-0e32c480604d76a319602656f2d8e2722497606e.tar.gz
rneovim-0e32c480604d76a319602656f2d8e2722497606e.tar.bz2
rneovim-0e32c480604d76a319602656f2d8e2722497606e.zip
Merge pull request #30979 from zeertzjq/vim-9.1.0810
vim-patch:9.1.{0810,0811,0821}: 'findexpr'
Diffstat (limited to 'runtime/lua/vim/_meta/vvars.lua')
-rw-r--r--runtime/lua/vim/_meta/vvars.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/vvars.lua b/runtime/lua/vim/_meta/vvars.lua
index e00402ab3f..b104356334 100644
--- a/runtime/lua/vim/_meta/vvars.lua
+++ b/runtime/lua/vim/_meta/vvars.lua
@@ -44,6 +44,11 @@ vim.v.cmdarg = ...
--- @type integer
vim.v.cmdbang = ...
+--- When evaluating 'findexpr': if 'findexpr' is used for cmdline
+--- completion the value is `v:true`, otherwise it is `v:false`.
+--- @type boolean
+vim.v.cmdcomplete = ...
+
--- The current locale setting for collation order of the runtime
--- environment. This allows Vim scripts to be aware of the
--- current locale encoding. Technical: it's the value of
@@ -267,7 +272,8 @@ vim.v.fcs_choice = ...
vim.v.fcs_reason = ...
--- When evaluating 'includeexpr': the file name that was
---- detected. Empty otherwise.
+--- detected. When evaluating 'findexpr': the argument passed to
+--- the `:find` command. Empty otherwise.
--- @type string
vim.v.fname = ...