neato.vim 518 B

12345678910111213141516
  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. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "neato"
  10. CompilerSet makeprg=neato\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
  11. " matches error messages as below skipping final part after line number
  12. " Error: ./file.dot: syntax error in line 1 near 'rankdir'
  13. CompilerSet errorformat=%trror:\ %f:\ %m\ in\ line\ %l%.%#