0
0
mirror of https://github.com/vim/vim.git synced 2025-11-15 23:14:06 -05:00

runtime(vim): Update base syntax, match Vim9 lambda arg to :defer

Support added in commit 21ef3c6e59.

See: #18643
closes: #18645

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Doug Kearns
2025-10-28 20:36:04 +00:00
committed by Christian Brabandt
parent 7adeb09bb2
commit 433d2ab206
4 changed files with 10 additions and 7 deletions

View File

@@ -10,5 +10,8 @@ endfunction
def Bar()
defer delete("tmpfile")
defer Delete("tmpfile")
defer () => {
echo "..."
}()
enddef