7
|
1 " Vim compiler file
|
375
|
2 " Compiler: reStructuredText Documentation Format
|
839
|
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2006-04-19
|
7
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "rst"
|
|
10
|
|
11 let s:cpo_save = &cpo
|
3237
|
12 set cpo&vim
|
7
|
13
|
839
|
14 setlocal errorformat=
|
7
|
15 \%f:%l:\ (%tEBUG/0)\ %m,
|
|
16 \%f:%l:\ (%tNFO/1)\ %m,
|
|
17 \%f:%l:\ (%tARNING/2)\ %m,
|
|
18 \%f:%l:\ (%tRROR/3)\ %m,
|
|
19 \%f:%l:\ (%tEVERE/3)\ %m,
|
|
20 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
|
|
21 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
|
|
22 \%DMaking\ %*\\a\ in\ %f
|
|
23
|
|
24 let &cpo = s:cpo_save
|
|
25 unlet s:cpo_save
|