xref: /vim-8.2.3635/runtime/compiler/rst.vim (revision 2bf24176)
1" Vim compiler file
2" Compiler:         reStructuredText Documentation Format
3" Maintainer:       Nikolai Weibull <[email protected]>
4" Latest Revision:  2006-04-19
5
6if exists("current_compiler")
7  finish
8endif
9let current_compiler = "rst"
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14setlocal errorformat=
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
24let &cpo = s:cpo_save
25unlet s:cpo_save
26