diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-17 10:15:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-17 10:15:55 +0200 |
commit | 6e6f5a783333d1bf9d6c719c896e72ac82e1ae54 (patch) | |
tree | f222e04ff0fb8b54079903361dd8b2fee06057aa /runtime/lua | |
parent | 670ecfc0cd81d7ec213591c96d45922390d109b9 (diff) | |
download | rneovim-6e6f5a783333d1bf9d6c719c896e72ac82e1ae54.tar.gz rneovim-6e6f5a783333d1bf9d6c719c896e72ac82e1ae54.tar.bz2 rneovim-6e6f5a783333d1bf9d6c719c896e72ac82e1ae54.zip |
vim-patch:8.2.4767: openscad files are not recognized (#18138)
Problem: Openscad files are not recognized.
Solution: Add a filetype pattern. (Niklas Adam, closes vim/vim#10199)
https://github.com/vim/vim/commit/c360b2566ce2390d45d9436a6a85719fe2b387d5
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 603f9f854a..27a3366e0f 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -436,6 +436,7 @@ local extension = { xin = "omnimark", opam = "opam", ["or"] = "openroad", + scad = "openscad", ora = "ora", org = "org", org_archive = "org", |