neovim

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

neato.vim (518B)


      1 " Vim compiler file
      2 " Compiler:     ATT neato
      3 " Maintainer:	Marcos Macedo <bar4ka@bol.com.br>
      4 " Last Change:	2024 March 21
      5 "		2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      6 
      7 if exists("current_compiler")
      8  finish
      9 endif
     10 let current_compiler = "neato"
     11 
     12 CompilerSet makeprg=neato\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
     13 " matches error messages as below skipping final part after line number
     14 " Error: ./file.dot: syntax error in line 1 near 'rankdir'
     15 CompilerSet errorformat=%trror:\ %f:\ %m\ in\ line\ %l%.%#