diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-20 09:50:32 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2022-04-20 09:52:31 +0200 |
commit | 63eb7e865b3c702d09bfa475587f646722996a56 (patch) | |
tree | a6bac441f3c32470c8b365c2de4b9ef9bd502029 /runtime/lua/vim | |
parent | d40b2afda8256be4dd91c58ccbb6220a2ca5490f (diff) | |
download | rneovim-63eb7e865b3c702d09bfa475587f646722996a56.tar.gz rneovim-63eb7e865b3c702d09bfa475587f646722996a56.tar.bz2 rneovim-63eb7e865b3c702d09bfa475587f646722996a56.zip |
vim-patch:8.2.4793: recognizing Maxima filetype even though it might be another
Problem: Recognizing Maxima filetype even though it might be another.
Solution: Remove *.mc and *.dem patterns from Maxima files
https://github.com/vim/vim/commit/928a13135629fa8e73796760077b1b877918a080
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index ac36210b23..d575869377 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -389,6 +389,12 @@ local extension = { mason = "mason", master = "master", mas = "master", + demo = "maxima", + dm1 = "maxima", + dm2 = "maxima", + dm3 = "maxima", + dmt = "maxima", + wxm = "maxima", mel = "mel", mf = "mf", mgl = "mgl", @@ -1013,6 +1019,7 @@ local filename = { [".mailcap"] = "mailcap", ["/etc/man.conf"] = "manconf", ["man.config"] = "manconf", + ["maxima-init.mac"] = "maxima", ["meson.build"] = "meson", ["meson_options.txt"] = "meson", ["/etc/conf.modules"] = "modconf", |