diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-08-30 21:16:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 21:16:03 +0200 |
commit | 6b7eed1884c3b022cc15568c39f80f8f4da0780b (patch) | |
tree | fbd92b294b56ef81584fca824fd75140643c2a0a /runtime/lua/vim | |
parent | 2828aae7b49921380f229ebf4d7432f39c6c2c2b (diff) | |
download | rneovim-6b7eed1884c3b022cc15568c39f80f8f4da0780b.tar.gz rneovim-6b7eed1884c3b022cc15568c39f80f8f4da0780b.tar.bz2 rneovim-6b7eed1884c3b022cc15568c39f80f8f4da0780b.zip |
Vim 9.0.{0314,0319}: some filetypes are not recognized (#20005)
* vim-patch:9.0.0314: VDM files are not recognized
Problem: VDM files are not recognized.
Solution: Add patterns for VDM files. (Alessandro Pezzoni, closes vim/vim#11004)
https://github.com/vim/vim/commit/bf26941f40923d331169a4ecb7341608f5d1ca38
* vim-patch:9.0.0319: Godot shader files are not recognized
Problem: Godot shader files are not recognized.
Solution: Add patterns for "gdshader". (Maxim Kim, closes vim/vim#11006)
https://github.com/vim/vim/commit/d5c8f11905abc1bdf3b8864dbc40187855ed9374
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 99c98764dd..fcd697a7c1 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -422,9 +422,11 @@ local extension = { gdb = 'gdb', gdmo = 'gdmo', mo = 'gdmo', - tres = 'gdresource', tscn = 'gdresource', + tres = 'gdresource', gd = 'gdscript', + gdshader = 'gdshader', + shader = 'gdshader', ged = 'gedcom', gmi = 'gemtext', gemini = 'gemtext', @@ -1011,6 +1013,11 @@ local extension = { dsm = 'vb', ctl = 'vb', vbs = 'vb', + vdmpp = 'vdmpp', + vpp = 'vdmpp', + vdmrt = 'vdmrt', + vdmsl = 'vdmsl', + vdm = 'vdmsl', vr = 'vera', vri = 'vera', vrh = 'vera', |