vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit a875bf8eee143df426266faf778989e1c988b07c
parent a7f22a6294264937251a3d64a3225569cd4dbf61
Author: Carla Cao <ccao001@fiu.edu>
Date:   Thu, 12 Nov 2020 01:24:59 -0500

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:
Mlua/plugins/filetype.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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$" },