home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / compiler / rst.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  622 b   |  26 lines

  1. " Vim compiler file
  2. " Compiler:         reStructuredText Documentation Format
  3. " Maintainer:       Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision:  2006-04-19
  5.  
  6. if exists("current_compiler")
  7.   finish
  8. endif
  9. let current_compiler = "rst"
  10.  
  11. let s:cpo_save = &cpo
  12. set cpo&vim
  13.  
  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
  23.  
  24. let &cpo = s:cpo_save
  25. unlet s:cpo_save
  26.