* vim/compiler/lilypond.vim: new file for errorformats.
* vimrc: add menu in console and shortcut <F10> for it.
* vim/:
+ * vim/compiler/:
* vim/syntax/:
* vim/indent/:
* vim/ftplugin/: new directories.
* 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/
--- /dev/null
+" LilyPond compiler file
+" Language: LilyPond
+" Maintainer: Heikki Junes <hjunes@cc.hut.fi>
+" 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
+"
" Completions in Insert/Replace-mode with <Ctrl-N>
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