aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-07-14 17:26:40 +0200
committerChristian Clason <c.clason@uni-graz.at>2024-07-14 23:55:57 +0200
commit79130c0fd393e3eef8e4c939c54ea3d3faec2149 (patch)
treee0ed0c4faff300b3025c7f4579f7378f2037f421 /runtime/lua
parent60734dc76112c4142c6048839a0b93c2d48e77f3 (diff)
downloadrneovim-79130c0fd393e3eef8e4c939c54ea3d3faec2149.tar.gz
rneovim-79130c0fd393e3eef8e4c939c54ea3d3faec2149.tar.bz2
rneovim-79130c0fd393e3eef8e4c939c54ea3d3faec2149.zip
vim-patch:9.1.0586: ocaml runtime files are outdated
Problem: ocaml runtime files are outdated Solution: sync those files with the upstream repo, detect a few more ocaml files (Yinzuo Jiang) closes: vim/vim#15260 https://github.com/vim/vim/commit/700cf8cfa1e926e2ba676203b3ad90c2c2083f1d Co-authored-by: Yinzuo Jiang <jiangyinzuo@foxmail.com>
Diffstat (limited to 'runtime/lua')
-rw-r--r--runtime/lua/vim/filetype.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua
index cead8871fe..08451735b6 100644
--- a/runtime/lua/vim/filetype.lua
+++ b/runtime/lua/vim/filetype.lua
@@ -1392,6 +1392,7 @@ local filename = {
jbuild = 'dune',
['dune-workspace'] = 'dune',
['dune-project'] = 'dune',
+ ['dune-file'] = 'dune',
Earthfile = 'earthfile',
['.editorconfig'] = 'editorconfig',
['elinks.conf'] = 'elinks',
@@ -1543,6 +1544,7 @@ local filename = {
['octave.conf'] = 'octave',
['.ondirrc'] = 'ondir',
opam = 'opam',
+ ['opam.locked'] = 'opam',
['pacman.log'] = 'pacmanlog',
['/etc/pam.conf'] = 'pamconf',
['pam_env.conf'] = 'pamenv',
@@ -2065,6 +2067,7 @@ local pattern = {
['%.ml%.cppo$'] = 'ocaml',
['%.mli%.cppo$'] = 'ocaml',
['/octave/history$'] = 'octave',
+ ['%.opam%.locked$'] = 'opam',
['%.opam%.template$'] = 'opam',
['/openvpn/.*/.*%.conf$'] = 'openvpn',
['%.[Oo][Pp][Ll]$'] = 'opl',