annotate runtime/compiler/hare.vim @ 35345:7d325ff9356c default tip

runtime(termdebug): Fix wrong email address Commit: https://github.com/vim/vim/commit/ae4641d68e2c01ee4847395bdb78a8c9c52394c7 Author: Christian Brabandt <cb@256bit.org> Date: Wed Jun 5 22:24:24 2024 +0200 runtime(termdebug): Fix wrong email address related: https://github.com/vim/vim/issues/14903 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 05 Jun 2024 22:30:05 +0200
parents ea0402ba92f6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
35266
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
1 " Vim compiler file.
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
2 " Compiler: Hare
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
3 " Maintainer: Amelia Clarke <selene@perilune.dev>
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
4 " Last Change: 2024-05-23
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
5 " Upstream: https://git.sr.ht/~sircmpwn/hare.vim
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6
35266
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
7 if exists('current_compiler')
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 finish
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 endif
35266
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
10 let current_compiler = 'hare'
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 let s:cpo_save = &cpo
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 set cpo&vim
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
35266
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
15 if filereadable('Makefile') || filereadable('makefile')
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 CompilerSet makeprg=make
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 else
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 CompilerSet makeprg=hare\ build
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 endif
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 CompilerSet errorformat=
35266
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
22 \%f:%l:%c:\ syntax\ error:\ %m,
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
23 \%f:%l:%c:\ error:\ %m,
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 \%-G%.%#
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 let &cpo = s:cpo_save
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 unlet s:cpo_save
35266
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
28
ea0402ba92f6 patch 9.1.0442: hare runtime files outdated
Christian Brabandt <cb@256bit.org>
parents: 34784
diff changeset
29 " vim: et sts=2 sw=2 ts=8