aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorRaphael <glephunter@gmail.com>2023-12-12 19:06:22 +0800
committerGitHub <noreply@github.com>2023-12-12 19:06:22 +0800
commit1d4a5cd18537d054a564ff19b9361120597d9dd7 (patch)
tree7b094048bf64789ad11e89b141baadec222bcf79 /runtime
parente69834744ba550100778890d0b4ecfc3c469af15 (diff)
downloadrneovim-1d4a5cd18537d054a564ff19b9361120597d9dd7.tar.gz
rneovim-1d4a5cd18537d054a564ff19b9361120597d9dd7.tar.bz2
rneovim-1d4a5cd18537d054a564ff19b9361120597d9dd7.zip
feat(eval): exists() function supports checking v:lua functions (#26485)
Problem: Vimscript function exists() can't check v:lua functions. Solution: Add support for v:lua functions to exists().
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/news.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
index 95d6b7a2f6..6166f4759d 100644
--- a/runtime/doc/news.txt
+++ b/runtime/doc/news.txt
@@ -339,6 +339,8 @@ The following changes to existing APIs or features add new behavior.
• |vim.wait()| is no longer allowed to be called in |api-fast|.
+• Vimscript function |exists()| supports checking |v:lua| functions.
+
==============================================================================
REMOVED FEATURES *news-removed*