Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim compiler file |
| 2 | " Compiler: ATT dot |
| 3 | " Maintainer: Marcos Macedo <bar4ka@bol.com.br> |
Enno | 6f43819 | 2024-03-24 10:37:56 +0100 | [diff] [blame] | 4 | " Last Change: 2024 March 21 |
Doug Kearns | 408281e | 2024-04-04 22:00:58 +0200 | [diff] [blame] | 5 | " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | |
| 7 | if exists("current_compiler") |
| 8 | finish |
| 9 | endif |
| 10 | let current_compiler = "dot" |
| 11 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 12 | CompilerSet makeprg=dot\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\" |
Enno | 6f43819 | 2024-03-24 10:37:56 +0100 | [diff] [blame] | 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%.%# |