comparison runtime/syntax/debchangelog.vim @ 28246:e3d6184b89fa

Update runtime files Commit: https://github.com/vim/vim/commit/46eea444d992c2ae985cabb775a5d283f8e16df3 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 30 10:51:39 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Mar 2022 12:00:04 +0200
parents ebedba7a4898
children cd68a630f0d0
comparison
equal deleted inserted replaced
28245:97c83c51f43f 28246:e3d6184b89fa
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Debian changelog files 2 " Language: Debian changelog files
3 " Maintainer: Debian Vim Maintainers 3 " Maintainer: Debian Vim Maintainers
4 " Former Maintainers: Gerfried Fuchs <alfie@ist.org> 4 " Former Maintainers: Gerfried Fuchs <alfie@ist.org>
5 " Wichert Akkerman <wakkerma@debian.org> 5 " Wichert Akkerman <wakkerma@debian.org>
6 " Last Change: 2021 Oct 19 6 " Last Change: 2022 Mar 28
7 " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debchangelog.vim 7 " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debchangelog.vim
8 8
9 " Standard syntax initialization 9 " Standard syntax initialization
10 if exists('b:current_syntax') 10 if exists('b:current_syntax')
11 finish 11 finish
22 let s:supported = [ 22 let s:supported = [
23 \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', 23 \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental',
24 \ 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm', 24 \ 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm',
25 \ 'trixie', 'sid', 'rc-buggy', 25 \ 'trixie', 'sid', 'rc-buggy',
26 \ 26 \
27 \ 'trusty', 'xenial', 'bionic', 'focal', 'hirsute', 'impish', 'jammy', 27 \ 'trusty', 'xenial', 'bionic', 'focal', 'impish', 'jammy',
28 \ 'devel' 28 \ 'devel'
29 \ ] 29 \ ]
30 let s:unsupported = [ 30 let s:unsupported = [
31 \ 'frozen', 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', 31 \ 'frozen', 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato',
32 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', 32 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy',
33 \ 33 \
34 \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', 34 \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty',
35 \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', 35 \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid',
36 \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', 36 \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy',
37 \ 'utopic', 'vivid', 'wily', 'yakkety', 'zesty', 'artful', 'cosmic', 37 \ 'utopic', 'vivid', 'wily', 'yakkety', 'zesty', 'artful', 'cosmic',
38 \ 'disco', 'eoan', 'groovy' 38 \ 'disco', 'eoan', 'hirsute', 'groovy'
39 \ ] 39 \ ]
40 let &cpo=s:cpo 40 let &cpo=s:cpo
41 41
42 " Define some common expressions we can use later on 42 " Define some common expressions we can use later on
43 syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ " 43 syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ "