diff options
author | Amaan Qureshi <amaanq12@gmail.com> | 2023-01-29 14:19:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-29 20:19:07 +0100 |
commit | c9ac4e487706658852f0e6c2e71cf669dafba90b (patch) | |
tree | 986dba34339762dc1dd3993426cf139c81c00c95 /runtime | |
parent | 9cb3b276bdb39f28fad51ce2a61cd5db6fb9a03b (diff) | |
download | rneovim-c9ac4e487706658852f0e6c2e71cf669dafba90b.tar.gz rneovim-c9ac4e487706658852f0e6c2e71cf669dafba90b.tar.bz2 rneovim-c9ac4e487706658852f0e6c2e71cf669dafba90b.zip |
vim-patch:9.0.1261: Elsa files are not recognized (#22047)
Problem: Elsa files are not recognized.
Solution: Add the name of Elsa files. (Amaan Qureshi)
https://github.com/vim/vim/commit/2a99fe6c41efcd5d1eb47823e7e73cf391e230ba
Diffstat (limited to 'runtime')
-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 0a26e363d5..1e7b85060e 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -332,6 +332,7 @@ local extension = { am = 'elf', exs = 'elixir', elm = 'elm', + lc = 'elsa', elv = 'elvish', ent = function(path, bufnr) return require('vim.filetype.detect').ent(bufnr) |