blob: 15d2d79f6421f21ada45543987b84470d041e15a [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
Bram Moolenaar42eeac32005-06-29 22:40:58 +00002" Compiler: reStructuredText Documentation Format
Bram Moolenaar57657d82006-04-21 22:12:41 +00003" Maintainer: Nikolai Weibull <now@bitwi.se>
4" Latest Revision: 2006-04-19
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "rst"
10
Bram Moolenaar071d4272004-06-13 20:20:40 +000011let s:cpo_save = &cpo
Bram Moolenaarb6b046b2011-12-30 13:11:27 +010012set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
Bram Moolenaar57657d82006-04-21 22:12:41 +000014setlocal errorformat=
Bram Moolenaar071d4272004-06-13 20:20:40 +000015 \%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
24let &cpo = s:cpo_save
25unlet s:cpo_save