diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-04-06 21:11:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-06 21:11:57 +0800 |
commit | 7560aee59547c3b050c3ee9988dd0e4d36d00144 (patch) | |
tree | 439f8b8791a7ace2c906b6d83ac77d5a7be8ca8b /runtime/lua/vim | |
parent | 0443f06b71c7a1563657765b35f7f3869300edc7 (diff) | |
download | rneovim-7560aee59547c3b050c3ee9988dd0e4d36d00144.tar.gz rneovim-7560aee59547c3b050c3ee9988dd0e4d36d00144.tar.bz2 rneovim-7560aee59547c3b050c3ee9988dd0e4d36d00144.zip |
vim-patch:9.1.0266: filetype: earthfile files are not recognized (#28207)
Problem: filetype: earthfile files are not recognized
Solution: Detect 'Earthfile' as earthfile
(Gaëtan Lehmann)
closes: vim/vim#14408
https://github.com/vim/vim/commit/28e5e7c48483254604506dbce5eb61396ff65808
Co-authored-by: Gaëtan Lehmann <gaetan.lehmann@gmail.com>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 1198a9972f..9b1fd80b82 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1293,6 +1293,7 @@ local filename = { jbuild = 'dune', ['dune-workspace'] = 'dune', ['dune-project'] = 'dune', + Earthfile = 'earthfile', ['.editorconfig'] = 'editorconfig', ['elinks.conf'] = 'elinks', ['mix.lock'] = 'elixir', |