summaryrefslogtreecommitdiff
path: root/vimrc
blob: b6093bb8ef5750064baa897462e1011b5f94e841 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
:version 6.1
set autoindent
set shiftwidth=2
"
" some handy key mappings
"
" <F4>  save & make and play midi
map <F4> :w<Return>:se makeprg=ly2dvi\ -m\ %<<Return>:make<Return>:!timidity %<.midi<Return>
"
" <F5>  save & make dvi, midi, ps
map <F5> :w<Return>:se makeprg=ly2dvi\ -P\ %<<Return>:make<Return>
"
" <F6>  view ps
map <F6> :!gv -watch %<.ps &<Return>
"
" <S-F6>  view dvi
map <S-F6> :!xdvi %<.dvi &<Return>
"
" <F7>  prev error
map <F7> :cp<Return>
"
" <F8>  next error
map <F8> :cn<Return>
"
" <F9>  make
map <F9> :w<Return>:se makeprg=make\ -k<Return>:make<Return>
"
" <F10> run buffer through lily
map <F10> :w<Return>:se makeprg=lilypond\ %:t<Return>:make<Return>
"
" <S-F10> run buffer through lily -M
map <S-F10> :w<Return>:se makeprg=lilypond\ -M\ %:t<Return>:make<Return>
"
" <F12> comment region
map <F12> :g!/%.*/normal 0i%<Return>
"
" <S-F12> remove comments in region
map <S-F12> :g/%.*/normal 0x<Return>
"
" Completions in Insert/Replace-mode with <Ctrl-N>
set dictionary-=~/.vim/lilypond.words dictionary+=~/.vim/lilypond.words
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