blob: 72b6a58b674cee6cfb30e5eb56334b7709a03820 [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>
Doug Kearns408281e2024-04-04 22:00:58 +02005" Last Change: 2017 Mar 31
6" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007
8if exists("current_compiler")
9 finish
10endif
11let current_compiler = "rst"
12
Bram Moolenaar071d4272004-06-13 20:20:40 +000013let s:cpo_save = &cpo
Bram Moolenaarb6b046b2011-12-30 13:11:27 +010014set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000015
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +020016CompilerSet errorformat=
17 \%f\\:%l:\ %tEBUG:\ %m,
18 \%f\\:%l:\ %tNFO:\ %m,
19 \%f\\:%l:\ %tARNING:\ %m,
20 \%f\\:%l:\ %tRROR:\ %m,
21 \%f\\:%l:\ %tEVERE:\ %m,
22 \%f\\:%s:\ %tARNING:\ %m,
23 \%f\\:%s:\ %tRROR:\ %m,
Bram Moolenaar071d4272004-06-13 20:20:40 +000024 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
25 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
26 \%DMaking\ %*\\a\ in\ %f
27
28let &cpo = s:cpo_save
29unlet s:cpo_save