dot.vim (512B)
1 " Vim compiler file 2 " Compiler: ATT dot 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 = "dot" 11 12 CompilerSet makeprg=dot\ -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%.%#