1 " LilyPond filetype plugin
2 " Language: LilyPond (ft=ly)
3 " Maintainer: Heikki Junes <hjunes@cc.hut.fi>
4 " Last Change: 2004 March 1
6 " Installed As: vim/ftplugin/lilypond.vim
7 " Uses Generated File: vim/syntax/lilypond-words.el
9 " Only do this when not done yet for this buffer
10 if exists("b:did_ftplugin")
14 " Don't load another plugin for this buffer
15 let b:did_ftplugin = 1
20 " some handy key mappings
22 " <F4> save & make and play midi
23 map <buffer> <F4> :w<Return>:se makeprg=lilypond\ -m\ %<<Return>:make<Return>:!timidity %<.midi<Return>
25 " <F5> save & make dvi, midi, ps
26 map <buffer> <F5> :w<Return>:se makeprg=lilypond\ %<<Return>:make<Return>
29 map <buffer> <F6> :!gv -watch %<.ps &<Return>
32 map <buffer> <S-F6> :!xdvi %<.dvi &<Return>
35 map <buffer> <F7> :cp<Return>
38 map <buffer> <F8> :cn<Return>
41 map <buffer> <F9> :w<Return>:se makeprg=make\ -k<Return>:make<Return>
44 source $VIMRUNTIME/menu.vim
48 map <buffer> <F10> :emenu <C-Z>
50 " <F12> comment region
51 map <buffer> <F12> :g!/%.*/normal 0i%<Return>
53 " <S-F12> remove comments in region
54 map <buffer> <S-F12> :g/%.*/normal 0x<Return>
56 " Completions in Insert/Replace-mode with <Ctrl-N>
57 setlocal dictionary-=$VIM/syntax/lilypond-words dictionary+=$VIM/syntax/lilypond-words
58 setlocal complete-=k complete+=k