neovim

Personal neovim configuration files
git clone git://gtms.dev:neovim
Log | Files | Refs

dart_ng_test.vim (432B)


      1 " Vim compiler file
      2 " Compiler:     Dart test
      3 " Maintainer:	  Tomas Nemec <nemi@skaut.cz]
      4 " Last Change:  Mon May 17 10:34:27 AM CEST 2021
      5 
      6 if exists("current_compiler")
      7   finish
      8 endif
      9 let current_compiler = "dart_ng_test"
     10 
     11 let s:cpo_save = &cpo
     12 set cpo&vim
     13 
     14 set makeprg=pub\ run\ build_runner\ test\ --\ --no-color\ %
     15 set errorformat=%E%.%#\]\ %m\ \[E\]%.%#,%Z%.%#\.dart\ %l:%c\ %.%#,%C%.%#
     16 
     17 let &cpo = s:cpo_save
     18 unlet s:cpo_save