comparison 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
comparison
equal deleted inserted replaced
28531:2a7e274ecf39 28532:11387538e7c4
1015 au BufNewFile,BufRead *.ll setf lifelines 1015 au BufNewFile,BufRead *.ll setf lifelines
1016 1016
1017 " Lilo: Linux loader 1017 " Lilo: Linux loader
1018 au BufNewFile,BufRead lilo.conf setf lilo 1018 au BufNewFile,BufRead lilo.conf setf lilo
1019 1019
1020 " Lilypond
1021 au BufNewFile,BufRead *.ly,*.ily setf lilypond
1022
1020 " Lisp (*.el = ELisp, *.cl = Common Lisp) 1023 " Lisp (*.el = ELisp, *.cl = Common Lisp)
1021 " *.jl was removed, it's also used for Julia, better skip than guess wrong. 1024 " *.jl was removed, it's also used for Julia, better skip than guess wrong.
1022 if has("fname_case") 1025 if has("fname_case")
1023 au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp 1026 au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp
1024 else 1027 else