]> git.donarmstrong.com Git - lilypond.git/blob - vim/lilypond-ftplugin.vim
Release: bump/rewind VERSION
[lilypond.git] / vim / lilypond-ftplugin.vim
1 " LilyPond filetype plugin
2 " Language:     LilyPond (ft=ly)
3 " Maintainer:   Heikki Junes <hjunes@cc.hut.fi>
4 " Last Change:  2010 Jul 26
5 "
6 " Installed As: vim/ftplugin/lilypond.vim
7 " Uses Generated File:  vim/syntax/lilypond-words.vim
8 "
9 " Only do this when not done yet for this buffer
10 if exists("b:did_ftplugin")
11   finish
12 endif
13
14 " Don't load another plugin for this buffer
15 let b:did_ftplugin = 1
16
17 setlocal autoindent
18 setlocal shiftwidth=2
19 "
20 " some handy key mappings
21 "
22 " <F4>  save & make and play midi with timidity
23 map <buffer> <F4> :w<Return>:se makeprg=lilypond\ \"%<\"<Return>:make<Return>:!timidity "%<.midi"<Return>
24 "
25 " <F5>  save & make
26 map <buffer> <F5> :w<Return>:se makeprg=lilypond\ \"%<\"<Return>:make<Return>
27 "
28 " <F6>  view ps with ghostview
29 map <buffer> <F6> :!gv --watch "%<.ps" &<Return>
30 "
31 " <F7>  prev error
32 map <buffer> <F7> :cp<Return>
33 "
34 " <F8>  next error
35 map <buffer> <F8> :cn<Return>
36 "
37 " <F9>  make
38 map <buffer> <F9> :w<Return>:se makeprg=make\ -k<Return>:make<Return>
39 "
40 " <F10> menu
41 source $VIMRUNTIME/menu.vim
42 setlocal wildmenu
43 setlocal cpo-=<
44 setlocal wcm=<C-Z>
45 map <buffer> <F10> :emenu <C-Z>
46 "
47 " <F12> comment region
48 map <buffer> <F12> :g!/%.*/normal 0i%<Return>
49 "
50 " <S-F12> remove comments in region
51 map <buffer> <S-F12> :g/%.*/normal 0x<Return>
52 "
53 " Completions in Insert/Replace-mode with <Ctrl-N>
54 setlocal dictionary-=$VIM/syntax/lilypond-words dictionary+=$VIM/syntax/lilypond-words
55 setlocal complete-=k complete+=k
56 "
57 setlocal showmatch