diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-10-29 09:01:46 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-29 09:01:46 +0800 |
| commit | 0e32c480604d76a319602656f2d8e2722497606e (patch) | |
| tree | b18deb6eaae322957f27ae87e134f7c8bb3ee5e9 /src/nvim/vvars.lua | |
| parent | 42fa3d080ec170b7927e36ec563efdd526c712d7 (diff) | |
| parent | 60b3ccd850ca038af6fc0a19cad12578f63d67ec (diff) | |
| download | rneovim-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 'src/nvim/vvars.lua')
| -rw-r--r-- | src/nvim/vvars.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/nvim/vvars.lua b/src/nvim/vvars.lua index ad139bbbfe..6c6edd4ee2 100644 --- a/src/nvim/vvars.lua +++ b/src/nvim/vvars.lua @@ -50,6 +50,13 @@ M.vars = { can be used. ]=], }, + cmdcomplete = { + type = 'boolean', + desc = [=[ + When evaluating 'findexpr': if 'findexpr' is used for cmdline + completion the value is |v:true|, otherwise it is |v:false|. + ]=], + }, collate = { type = 'string', desc = [=[ @@ -284,7 +291,8 @@ M.vars = { type = 'string', desc = [=[ When evaluating 'includeexpr': the file name that was - detected. Empty otherwise. + detected. When evaluating 'findexpr': the argument passed to + the |:find| command. Empty otherwise. ]=], }, fname_diff = { |