aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-09-16 17:52:08 +0200
committerGitHub <noreply@github.com>2022-09-16 17:52:08 +0200
commite512d3ecf2b6e0104d2df0d863c8d51a2d7e5ab1 (patch)
tree248402c44d79c9532a859e772d279c44485916c6 /runtime/lua/vim
parent6b2f0f43b5f9d375d2be1b4eb4784716dd89ec8f (diff)
downloadrneovim-e512d3ecf2b6e0104d2df0d863c8d51a2d7e5ab1.tar.gz
rneovim-e512d3ecf2b6e0104d2df0d863c8d51a2d7e5ab1.tar.bz2
rneovim-e512d3ecf2b6e0104d2df0d863c8d51a2d7e5ab1.zip
vim-patch:9.0.0479: in :def function all closures in loop get the sam… (#20220)
vim-patch:9.0.0479: in :def function all closures in loop get the same variables Problem: In a :def function all closures in a loop get the same variables. Solution: Use a separate list of variables for LOADOUTER and SAVEOUTER. https://github.com/vim/vim/commit/1aea184a0dc558a222cc5bcbaad9ab0fd700c7b9 (note: patch description is wrong)
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r--runtime/lua/vim/filetype.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua
index 39985c948e..8fb8e98f7d 100644
--- a/runtime/lua/vim/filetype.lua
+++ b/runtime/lua/vim/filetype.lua
@@ -1021,6 +1021,7 @@ local extension = {
dsm = 'vb',
ctl = 'vb',
vbs = 'vb',
+ vdf = 'vdf',
vdmpp = 'vdmpp',
vpp = 'vdmpp',
vdmrt = 'vdmrt',