diff options
| author | TwoFinger <Two-Finger@users.noreply.github.com> | 2018-01-27 21:34:20 +0200 |
|---|---|---|
| committer | TwoFinger <Two-Finger@users.noreply.github.com> | 2018-03-05 12:16:42 +0200 |
| commit | bd5015fad0f549e3cdb4778a49a440aefc131bc6 (patch) | |
| tree | fe42fbfb52c57e516570484ab42f2670afda6a29 /lua/plugins/filetype.lua | |
| parent | fdb56b003c9e0a00ded2878b0c174a7780bb39b2 (diff) | |
| download | vis-bd5015fad0f549e3cdb4778a49a440aefc131bc6.tar.gz vis-bd5015fad0f549e3cdb4778a49a440aefc131bc6.tar.xz | |
lua: add more Scheme filename extensions
.ss and .sls are used in Racket, Guile and Chez, at least.
Diffstat (limited to 'lua/plugins/filetype.lua')
| -rw-r--r-- | lua/plugins/filetype.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua index a18c8a0..ba770aa 100644 --- a/lua/plugins/filetype.lua +++ b/lua/plugins/filetype.lua @@ -344,7 +344,7 @@ vis.ftdetect.filetypes = { mime = { "text/x-scala" }, }, scheme = { - ext = { "%.sch$", "%.scm$", "%.sld$" }, + ext = { "%.sch$", "%.scm$", "%.sld$", "%.sls$", "%.ss$" }, }, smalltalk = { ext = { "%.changes$", "%.st$", "%.sources$" }, |
