neovim

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

typedoc.vim (490B)


      1 " Vim compiler file
      2 " Compiler:	TypeDoc
      3 " Maintainer:	Doug Kearns <dougkearns@gmail.com>
      4 " Last Change:	2024 Apr 03
      5 
      6 if exists("current_compiler")
      7  finish
      8 endif
      9 let current_compiler = "typedoc"
     10 
     11 let s:cpo_save = &cpo
     12 set cpo&vim
     13 
     14 " CompilerSet makeprg=npx\ typedoc
     15 
     16 CompilerSet makeprg=typedoc
     17 CompilerSet errorformat=%EError:\ %f(%l),
     18 	       \%WWarning:\ %f(%l),
     19 	       \%+IDocumentation\ generated\ at\ %f,
     20 	       \%Z\ %m,
     21 	       \%-G%.%#
     22 
     23 let &cpo = s:cpo_save
     24 unlet s:cpo_save