diff options
author | Jonathan Kulp <jon@bashtop.(none)> | 2009-05-17 21:30:06 -0500 |
---|---|---|
committer | John Mandereau <john.mandereau@gmail.com> | 2009-06-02 15:16:59 +0200 |
commit | 8168130e7194cde581467d53355aa35d588fe512 (patch) | |
tree | 39422d42eb3fb03f26121b6961cfe5d1c9d43807 /vim | |
parent | cef3130714cd329dd1aa8fda1d84cc27603e9d53 (diff) |
Add *.ily to vim-related files
Diffstat (limited to 'vim')
-rw-r--r-- | vim/filetype.vim | 2 | ||||
-rw-r--r-- | vim/lilypond-ftdetect.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vim/filetype.vim b/vim/filetype.vim index f80e26fef2..972cc63e44 100644 --- a/vim/filetype.vim +++ b/vim/filetype.vim @@ -6,5 +6,5 @@ if exists("did_load_filetypes") finish endif augroup filetypedetect - au! BufNewFile,BufRead *.ly setf lilypond + au! BufNewFile,BufRead *.ly,*.ily setf lilypond augroup END diff --git a/vim/lilypond-ftdetect.vim b/vim/lilypond-ftdetect.vim index ae626f977b..9147fc81dd 100644 --- a/vim/lilypond-ftdetect.vim +++ b/vim/lilypond-ftdetect.vim @@ -1,4 +1,4 @@ " " Installed As: vim/ftdetect/lilypond.vim " -au! BufNewFile,BufRead *.ly setf lilypond +au! BufNewFile,BufRead *.ly,*.ily setf lilypond |