" LilyPond filetype plugin " Language: LilyPond (ft=ly) " " Installed As: vim/ftplugin/lilypond.vim " Uses Generated File: vim/syntax/lilypond-words.vim " " Only do this when not done yet for this buffer if exists("b:did_ftplugin") finish endif " Don't load another plugin for this buffer let b:did_ftplugin = 1 setlocal autoindent setlocal shiftwidth=2 " " some handy key mappings " " save & make and play midi with timidity map :w:setl makeprg=lilypond\ \"%<\":make:!timidity "%<.midi" " " save & make map :w:setl makeprg=lilypond\ \"%<\":make " " view pdf with ghostview map :!gv --watch "%<.pdf" & " " prev error map :cp " " next error map :cn " " make map :w:setl makeprg=make\ -k:make " " menu source $VIMRUNTIME/menu.vim setlocal wildmenu setlocal cpo-=< setlocal wcm= map :emenu " " comment region map :g!/%.*/normal 0i% " " remove comments in region map :g/%.*/normal 0x " " Completions in Insert/Replace-mode with setlocal dictionary-=$VIM/syntax/lilypond-words dictionary+=$VIM/syntax/lilypond-words setlocal complete-=k complete+=k " setlocal showmatch