diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-02 13:36:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-02 13:36:19 +0200 |
commit | e45d141e28a4b31b4c98f7ed1655e9c7141ae74f (patch) | |
tree | 5b2b4bb49bdf1108936048a6f906d3708eb9f17d /runtime/lua/vim | |
parent | af1b61f342618aa8d27c6e1dcbb0e360920ca89e (diff) | |
download | rneovim-e45d141e28a4b31b4c98f7ed1655e9c7141ae74f.tar.gz rneovim-e45d141e28a4b31b4c98f7ed1655e9c7141ae74f.tar.bz2 rneovim-e45d141e28a4b31b4c98f7ed1655e9c7141ae74f.zip |
vim-patch:8.2.4664: Elvish files are not recognized (#17963)
Problem: Elvish files are not recognized.
Solution: Recognize .elv files. (Bruno Roque, closes vim/vim#10058)
https://github.com/vim/vim/commit/c1658a196bb05dd96562fd0a92409be2201b62e9
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 927ef36391..65edaed530 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -177,6 +177,7 @@ local extension = { leex = "eelixir", exs = "elixir", elm = "elm", + elv = "elvish", epp = "epuppet", erl = "erlang", hrl = "erlang", |