diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-30 17:31:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 17:31:53 +0200 |
commit | 872622bcdbe3e971973c374392221589815d497a (patch) | |
tree | 612f58e8f0f76934834c7d6aefeda45ad4295415 /runtime/lua | |
parent | 88411613e23bd829088f48983f0253f1b7e5c3fd (diff) | |
download | rneovim-872622bcdbe3e971973c374392221589815d497a.tar.gz rneovim-872622bcdbe3e971973c374392221589815d497a.tar.bz2 rneovim-872622bcdbe3e971973c374392221589815d497a.zip |
vim-patch:8.2.4849: Gleam filetype not detected (#18326)
Problem: Gleam filetype not detected.
Solution: Add a pattern for Gleam files. (Mathias Jean Johansen,
closes vim/vim#10326)
https://github.com/vim/vim/commit/917c32c4f75351061a773cd5bc5b6f42c7d10e62
Diffstat (limited to 'runtime/lua')
-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 1297ef6241..2a34fec7f2 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -241,6 +241,7 @@ local extension = { gmi = "gemtext", gemini = "gemtext", gift = "gift", + gleam = "gleam", glsl = "glsl", gpi = "gnuplot", gnuplot = "gnuplot", |