annotate runtime/compiler/neato.vim @ 35507:1a7250350167 draft default tip

runtime(doc): In builtin overview use {buf} as param for appendbufline/setbufline (#15089) Commit: https://github.com/vim/vim/commit/f0837ba0b9dba9d30e3dc2626d4f690a2d51103e Author: errael <errael@raelity.com> Date: Mon Jun 24 12:27:01 2024 -0700 runtime(doc): In builtin overview use {buf} as param for appendbufline/setbufline (https://github.com/vim/vim/issues/15089) Signed-off-by: Ernie Rael <errael@raelity.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 24 Jun 2024 21:30:08 +0200
parents e1df51f68736
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim compiler file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Compiler: ATT neato
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 " Maintainer: Marcos Macedo <bar4ka@bol.com.br>
34629
80a9b43d299b runtime(compiler): update errorformat for dot and neato compiler (#14257)
Christian Brabandt <cb@256bit.org>
parents: 7
diff changeset
4 " Last Change: 2024 March 21
34778
e1df51f68736 runtime: Remove fallback :CompilerSet definition from compiler plugins
Christian Brabandt <cb@256bit.org>
parents: 34629
diff changeset
5 " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 if exists("current_compiler")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 let current_compiler = "neato"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 CompilerSet makeprg=neato\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
34629
80a9b43d299b runtime(compiler): update errorformat for dot and neato compiler (#14257)
Christian Brabandt <cb@256bit.org>
parents: 7
diff changeset
13 " matches error messages as below skipping final part after line number
80a9b43d299b runtime(compiler): update errorformat for dot and neato compiler (#14257)
Christian Brabandt <cb@256bit.org>
parents: 7
diff changeset
14 " Error: ./file.dot: syntax error in line 1 near 'rankdir'
80a9b43d299b runtime(compiler): update errorformat for dot and neato compiler (#14257)
Christian Brabandt <cb@256bit.org>
parents: 7
diff changeset
15 CompilerSet errorformat=%trror:\ %f:\ %m\ in\ line\ %l%.%#