diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-25 20:02:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 20:02:36 +0200 |
commit | af82eab946cf9f36e544b0591b8c8c02e8ddf316 (patch) | |
tree | 110c873abef13a6f909394f14def0b8b18155faa /runtime/lua/vim | |
parent | 35aa072647ec67e33e4bfb21b7febd369f63c33b (diff) | |
download | rneovim-af82eab946cf9f36e544b0591b8c8c02e8ddf316.tar.gz rneovim-af82eab946cf9f36e544b0591b8c8c02e8ddf316.tar.bz2 rneovim-af82eab946cf9f36e544b0591b8c8c02e8ddf316.zip |
vim-patch:8.2.4826: .cshtml files are not recognized (#18259)
Problem: .cshtml files are not recognized.
Solution: Use html filetype for .cshtml files. (Julien Voisin, closes vim/vim#10212)
https://github.com/vim/vim/commit/1f435dafff2452e0b55d1ca457ce7402e526e92a
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 420d343a8a..1297ef6241 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -142,6 +142,7 @@ local extension = { cs = "cs", csc = "csc", csdl = "csdl", + cshtml = "html", fdr = "csp", csp = "csp", css = "css", |