Merge branch 'vim-with-runtime' into feat/quickfix-title
[vim_extended.git] / runtime / compiler / rst.vim
blob07c7d4139c4be4ed6673e315d3286fd111b2e691
1 " Vim compiler file
2 " Compiler:         reStructuredText Documentation Format
3 " Maintainer:       Nikolai Weibull <now@bitwi.se>
4 " Latest Revision:  2006-04-19
6 if exists("current_compiler")
7   finish
8 endif
9 let current_compiler = "rst"
11 let s:cpo_save = &cpo
12 set cpo-=C
14 setlocal 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
24 let &cpo = s:cpo_save
25 unlet s:cpo_save