diff options
| author | Carla Cao <ccao001@fiu.edu> | 2020-11-12 01:24:59 -0500 |
|---|---|---|
| committer | Carla Cao <ccao001@fiu.edu> | 2020-11-12 01:24:59 -0500 |
| commit | 93f475cd110a56d55b4063f5d9c0cdfb6c5875e6 (patch) | |
| tree | 178d01052d369267633be7e23ead27c5c6fdf37c /lua/plugins | |
| parent | 6a569c8d708fcfe0ad3d68730a704f1fba07e144 (diff) | |
| download | vis-93f475cd110a56d55b4063f5d9c0cdfb6c5875e6.tar.gz vis-93f475cd110a56d55b4063f5d9c0cdfb6c5875e6.tar.xz | |
lua: fix typo in lilypond file extension
There is no .lily file but there is a .ily file in lilypond for
stylesheets. They are like css for lilypond. See here:
http://lilypond.org/doc/v2.18/Documentation/learning/style-sheets
Diffstat (limited to 'lua/plugins')
| -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 3d3f003..22da071 100644 --- a/lua/plugins/filetype.lua +++ b/lua/plugins/filetype.lua @@ -227,7 +227,7 @@ vis.ftdetect.filetypes = { ext = { "%.less$" }, }, lilypond = { - ext = { "%.lily$", "%.ly$" }, + ext = { "%.ily$", "%.ly$" }, }, lisp = { ext = { "%.cl$", "%.el$", "%.lisp$", "%.lsp$" }, |
