mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
011585f35f
runtime(compiler): update errorformat for dot and neato compiler (vim/vim#14257)
* add errorformat for dot compiler
* add errorformat for neato compiler
6f438199c9
Co-authored-by: Enno <Konfekt@users.noreply.github.com>
19 lines
570 B
VimL
19 lines
570 B
VimL
" Vim compiler file
|
|
" Compiler: ATT neato
|
|
" Maintainer: Marcos Macedo <bar4ka@bol.com.br>
|
|
" Last Change: 2024 March 21
|
|
|
|
if exists("current_compiler")
|
|
finish
|
|
endif
|
|
let current_compiler = "neato"
|
|
|
|
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
command -nargs=* CompilerSet setlocal <args>
|
|
endif
|
|
|
|
CompilerSet makeprg=neato\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
|
|
" matches error messages as below skipping final part after line number
|
|
" Error: ./file.dot: syntax error in line 1 near 'rankdir'
|
|
CompilerSet errorformat=%trror:\ %f:\ %m\ in\ line\ %l%.%#
|