Mercurial > vim
annotate runtime/syntax/debchangelog.vim @ 21720:76dae0016d48
Added tag v8.2.1409 for changeset 40dca24258ffd594494d56bc31b54f4ad03f1dab
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 09 Aug 2020 19:45:05 +0200 |
parents | 56265f711890 |
children | 8dad79c661d1 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
835 | 2 " Language: Debian changelog files |
13231 | 3 " Maintainer: Debian Vim Maintainers |
1620 | 4 " Former Maintainers: Gerfried Fuchs <alfie@ist.org> |
5 " Wichert Akkerman <wakkerma@debian.org> | |
20241 | 6 " Last Change: 2020 Apr 27 |
13231 | 7 " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debchangelog.vim |
7 | 8 |
9 " Standard syntax initialization | |
13857 | 10 if exists('b:current_syntax') |
7 | 11 finish |
12 endif | |
13 | |
14 " Case doesn't matter for us | |
15 syn case ignore | |
16 | |
15729 | 17 let s:urgency='urgency=\(low\|medium\|high\|emergency\|critical\)\( [^[:space:],][^,]*\)\=' |
11518 | 18 let s:binNMU='binary-only=yes' |
6823 | 19 |
18489 | 20 let s:cpo = &cpo |
21 set cpo-=C | |
22 let s:supported = [ | |
23 \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', | |
24 \ 'wheezy', 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm', | |
25 \ 'sid', 'rc-buggy', | |
26 \ | |
20241 | 27 \ 'trusty', 'xenial', 'bionic', 'eoan', 'focal', 'groovy', 'devel' |
18489 | 28 \ ] |
29 let s:unsupported = [ | |
30 \ 'frozen', 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', | |
31 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', | |
32 \ | |
33 \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', | |
34 \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', | |
35 \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', | |
19303 | 36 \ 'utopic', 'vivid', 'wily', 'yakkety', 'zesty', 'artful', 'cosmic', |
37 \ 'disco' | |
18489 | 38 \ ] |
39 let &cpo=s:cpo | |
40 | |
7 | 41 " Define some common expressions we can use later on |
2034 | 42 syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ " |
11518 | 43 exe 'syn match debchangelogFirstKV contained "; \('.s:urgency.'\|'.s:binNMU.'\)"' |
44 exe 'syn match debchangelogOtherKV contained ", \('.s:urgency.'\|'.s:binNMU.'\)"' | |
18489 | 45 exe 'syn match debchangelogTarget contained "\%( \%('.join(s:supported, '\|').'\)\>[-[:alnum:]]*\)\+"' |
46 exe 'syn match debchangelogUnsupportedTarget contained "\%( \%('.join(s:unsupported, '\|').'\)\>[-[:alnum:]]*\)\+"' | |
19303 | 47 syn match debchangelogUnreleased contained / UNRELEASED/ |
7 | 48 syn match debchangelogVersion contained "(.\{-})" |
1620 | 49 syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*" |
50 syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*" | |
7 | 51 syn match debchangelogEmail contained "[_=[:alnum:].+-]\+@[[:alnum:]./\-]\+" |
52 syn match debchangelogEmail contained "<.\{-}>" | |
53 | |
54 " Define the entries that make up the changelog | |
18489 | 55 syn region debchangelogHeader start="^[^ ]" end="$" contains=debchangelogName,debchangelogFirstKV,debchangelogOtherKV,debchangelogTarget,debchangelogUnsupportedTarget,debchangelogUnreleased,debchangelogVersion,debchangelogBinNMU oneline |
7 | 56 syn region debchangelogFooter start="^ [^ ]" end="$" contains=debchangelogEmail oneline |
1620 | 57 syn region debchangelogEntry start="^ " end="$" contains=debchangelogCloses,debchangelogLP oneline |
7 | 58 |
59 " Associate our matches and regions with pretty colours | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
60 hi def link debchangelogHeader Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
61 hi def link debchangelogFooter Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
62 hi def link debchangelogEntry Normal |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
63 hi def link debchangelogCloses Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
64 hi def link debchangelogLP Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
65 hi def link debchangelogFirstKV Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
66 hi def link debchangelogOtherKV Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
67 hi def link debchangelogName Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
68 hi def link debchangelogVersion Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
69 hi def link debchangelogTarget Identifier |
18489 | 70 hi def link debchangelogUnsupportedTarget Identifier |
71 hi def link debchangelogUnreleased WarningMsg | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
72 hi def link debchangelogEmail Special |
7 | 73 |
13857 | 74 let b:current_syntax = 'debchangelog' |
7 | 75 |
76 " vim: ts=8 sw=2 |