neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

rst.vim (851B)


      1 " Vim compiler file
      2 " Compiler:             sphinx >= 1.0.8, http://www.sphinx-doc.org
      3 " Description:          reStructuredText Documentation Format
      4 " Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
      5 " Last Change:          2017 Mar 31
      6 "                       2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      7 
      8 if exists("current_compiler")
      9  finish
     10 endif
     11 let current_compiler = "rst"
     12 
     13 let s:cpo_save = &cpo
     14 set cpo&vim
     15 
     16 CompilerSet 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,
     24      \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
     25      \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
     26      \%DMaking\ %*\\a\ in\ %f
     27 
     28 let &cpo = s:cpo_save
     29 unlet s:cpo_save