diff runtime/filetype.vim @ 28532:11387538e7c4 v8.2.4790

patch 8.2.4790: lilypond filetype not recognized Commit: https://github.com/vim/vim/commit/c448e9c95089b5e7170a0dd36635a226c5eb5b1c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 19 15:29:57 2022 +0100 patch 8.2.4790: lilypond filetype not recognized Problem: Lilypond filetype not recognized. Solution: Add patterns for lilypond. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Tue, 19 Apr 2022 16:45:03 +0200
parents f73a9bdff3a3
children 48712267f57b
line wrap: on
line diff
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1017,6 +1017,9 @@ au BufNewFile,BufRead *.ll			setf lifeli
 " 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")