blob: 392bea6ae0a895ce1a877fe52ca0c9662e18c937 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02002" Compiler: sphinx >= 1.0.8, http://www.sphinx-doc.org
3" Description: reStructuredText Documentation Format
Bram Moolenaar214641f2017-03-05 17:04:09 +01004" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02005" Latest Revision: 2017-03-31
Bram Moolenaar071d4272004-06-13 20:20:40 +00006
7if exists("current_compiler")
8 finish
9endif
10let current_compiler = "rst"
11
Bram Moolenaar071d4272004-06-13 20:20:40 +000012let s:cpo_save = &cpo
Bram Moolenaarb6b046b2011-12-30 13:11:27 +010013set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000014
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +020015if exists(":CompilerSet") != 2
16 command -nargs=* CompilerSet setlocal <args>
17endif
18
19CompilerSet errorformat=
20 \%f\\:%l:\ %tEBUG:\ %m,
21 \%f\\:%l:\ %tNFO:\ %m,
22 \%f\\:%l:\ %tARNING:\ %m,
23 \%f\\:%l:\ %tRROR:\ %m,
24 \%f\\:%l:\ %tEVERE:\ %m,
25 \%f\\:%s:\ %tARNING:\ %m,
26 \%f\\:%s:\ %tRROR:\ %m,
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
28 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
29 \%DMaking\ %*\\a\ in\ %f
30
31let &cpo = s:cpo_save
32unlet s:cpo_save