mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.4790: lilypond filetype not recognized (#18174)
Problem: Lilypond filetype not recognized.
Solution: Add patterns for lilypond. (Doug Kearns)
c448e9c950
This commit is contained in:
parent
245858460f
commit
a391cd517b
@ -1009,6 +1009,9 @@ au BufNewFile,BufRead *.ll setf lifelines
|
|||||||
" Lilo: Linux loader
|
" Lilo: Linux loader
|
||||||
au BufNewFile,BufRead lilo.conf setf lilo
|
au BufNewFile,BufRead lilo.conf setf lilo
|
||||||
|
|
||||||
|
" Lilypond
|
||||||
|
au BufNewFile,BufRead *.ly,*.ily setf lilypond
|
||||||
|
|
||||||
" Lisp (*.el = ELisp, *.cl = Common Lisp)
|
" Lisp (*.el = ELisp, *.cl = Common Lisp)
|
||||||
" *.jl was removed, it's also used for Julia, better skip than guess wrong.
|
" *.jl was removed, it's also used for Julia, better skip than guess wrong.
|
||||||
if has("fname_case")
|
if has("fname_case")
|
||||||
|
@ -343,6 +343,8 @@ local extension = {
|
|||||||
l = "lex",
|
l = "lex",
|
||||||
lhs = "lhaskell",
|
lhs = "lhaskell",
|
||||||
ll = "lifelines",
|
ll = "lifelines",
|
||||||
|
ly = "lilypond",
|
||||||
|
ily = "lilypond",
|
||||||
liquid = "liquid",
|
liquid = "liquid",
|
||||||
cl = "lisp",
|
cl = "lisp",
|
||||||
L = "lisp",
|
L = "lisp",
|
||||||
|
@ -306,6 +306,7 @@ let s:filename_checks = {
|
|||||||
\ 'libao': ['/etc/libao.conf', '/.libao', 'any/.libao', 'any/etc/libao.conf'],
|
\ 'libao': ['/etc/libao.conf', '/.libao', 'any/.libao', 'any/etc/libao.conf'],
|
||||||
\ 'lifelines': ['file.ll'],
|
\ 'lifelines': ['file.ll'],
|
||||||
\ 'lilo': ['lilo.conf', 'lilo.conf-file'],
|
\ 'lilo': ['lilo.conf', 'lilo.conf-file'],
|
||||||
|
\ 'lilypond': ['file.ly', 'file.ily'],
|
||||||
\ 'limits': ['/etc/limits', '/etc/anylimits.conf', '/etc/anylimits.d/file.conf', '/etc/limits.conf', '/etc/limits.d/file.conf', '/etc/some-limits.conf', '/etc/some-limits.d/file.conf', 'any/etc/limits', 'any/etc/limits.conf', 'any/etc/limits.d/file.conf', 'any/etc/some-limits.conf', 'any/etc/some-limits.d/file.conf'],
|
\ 'limits': ['/etc/limits', '/etc/anylimits.conf', '/etc/anylimits.d/file.conf', '/etc/limits.conf', '/etc/limits.d/file.conf', '/etc/some-limits.conf', '/etc/some-limits.d/file.conf', 'any/etc/limits', 'any/etc/limits.conf', 'any/etc/limits.d/file.conf', 'any/etc/some-limits.conf', 'any/etc/some-limits.d/file.conf'],
|
||||||
\ 'liquid': ['file.liquid'],
|
\ 'liquid': ['file.liquid'],
|
||||||
\ 'lisp': ['file.lsp', 'file.lisp', 'file.asd', 'file.el', 'file.cl', '.emacs', '.sawfishrc', 'sbclrc', '.sbclrc'],
|
\ 'lisp': ['file.lsp', 'file.lisp', 'file.asd', 'file.el', 'file.cl', '.emacs', '.sawfishrc', 'sbclrc', '.sbclrc'],
|
||||||
|
Loading…
Reference in New Issue
Block a user