From: hjunes Date: Mon, 1 Mar 2004 17:50:25 +0000 (+0000) Subject: * vim/ftplugin/lilypond.vim: remove errorformat. X-Git-Tag: release/2.1.36~213 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b32ef9d6441988cc91f09c4c74fefa5ec698bf7a;p=lilypond.git * vim/ftplugin/lilypond.vim: remove errorformat. * vim/compiler/lilypond.vim: new file for errorformats. --- diff --git a/ChangeLog b/ChangeLog index 418b84998e..0a6d206ac5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ * vimrc: add menu in console and shortcut for it. * vim/: + * vim/compiler/: * vim/syntax/: * vim/indent/: * vim/ftplugin/: new directories. @@ -29,6 +30,9 @@ * vim/indent/lilypond.vim: new file. + * vim/ftplugin/lilypond.vim: remove errorformat. + * vim/compiler/lilypond.vim: new file for errorformats. + * Documentation/topdocs/INSTALL.texi: give easier orders. * ROADMAP: add vim/ diff --git a/vim/compiler/lilypond.vim b/vim/compiler/lilypond.vim new file mode 100644 index 0000000000..c0c6c7d0f6 --- /dev/null +++ b/vim/compiler/lilypond.vim @@ -0,0 +1,17 @@ +" LilyPond compiler file +" Language: LilyPond +" Maintainer: Heikki Junes +" Last Change: 2004 Mar 01 + +" Only load this indent file when no other was loaded. +if exists("current_compiler") + finish +endif +let current_compiler = "lilypond" + +" default make +setlocal makeprg=lilypond $* +" errorformat for lily (with columns) and gcc +" (how to see multiple-line error messages?) +setlocal errorformat=%f:%l:%c:\ %m,%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m +" diff --git a/vim/ftplugin/lilypond.vim b/vim/ftplugin/lilypond.vim index 67afd28bc1..390afe8da1 100644 --- a/vim/ftplugin/lilypond.vim +++ b/vim/ftplugin/lilypond.vim @@ -53,8 +53,4 @@ map :g/%.*/normal 0x " Completions in Insert/Replace-mode with set dictionary-=~/.vim/syntax/lilypond.words.el dictionary+=~/.vim/syntax/lilypond.words.el set complete-=k complete+=k -" errorformat for lily (with columns) and gcc -" (how to see multiple-line error messages?) -" -se errorformat=%f:%l:%c:\ %m,%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m