aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/vimfn.lua
diff options
context:
space:
mode:
authorRaphael <glephunter@gmail.com>2024-01-22 16:04:50 +0800
committerGitHub <noreply@github.com>2024-01-22 16:04:50 +0800
commit12d123959f56636473112d86ec5977ef993c58e5 (patch)
tree319deb36b20fe858b82318373dfe8171325900fc /runtime/lua/vim/_meta/vimfn.lua
parente68decab0352d553bd2463842d96379f56073a1c (diff)
downloadrneovim-12d123959f56636473112d86ec5977ef993c58e5.tar.gz
rneovim-12d123959f56636473112d86ec5977ef993c58e5.tar.bz2
rneovim-12d123959f56636473112d86ec5977ef993c58e5.zip
fix(eval): properly support checking v:lua function in exists() (#27124)
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r--runtime/lua/vim/_meta/vimfn.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua
index 50f6e4da52..011bfb7c11 100644
--- a/runtime/lua/vim/_meta/vimfn.lua
+++ b/runtime/lua/vim/_meta/vimfn.lua
@@ -1709,6 +1709,7 @@ function vim.fn.exepath(expr) end
--- echo exists("*strftime")
--- echo exists("*s:MyFunc")
--- echo exists("*MyFunc")
+--- echo exists("*v:lua.Func")
--- echo exists("bufcount")
--- echo exists(":Make")
--- echo exists("#CursorHold")