summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-04-19 15:29:57 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-19 15:29:57 +0100
commitc448e9c95089b5e7170a0dd36635a226c5eb5b1c (patch)
treed478aaec1c963cb2eb0a46937102a6b8cbed28c2 /runtime
parenta653e53b1f4ba08de0dbcea06288cf0cc1c6e752 (diff)
patch 8.2.4790: lilypond filetype not recognizedv8.2.4790
Problem: Lilypond filetype not recognized. Solution: Add patterns for lilypond. (Doug Kearns)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index a43b5c6fb5..c32a566ed7 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1017,6 +1017,9 @@ au BufNewFile,BufRead *.ll setf lifelines
" Lilo: Linux loader
au BufNewFile,BufRead lilo.conf setf lilo
+" Lilypond
+au BufNewFile,BufRead *.ly,*.ily setf lilypond
+
" Lisp (*.el = ELisp, *.cl = Common Lisp)
" *.jl was removed, it's also used for Julia, better skip than guess wrong.
if has("fname_case")