comparison runtime/syntax/debchangelog.vim @ 26050:ebedba7a4898

Update runtime files Commit: https://github.com/vim/vim/commit/079ba76ae7a7d0ef404cb9b41dff2663ff41f51b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 23 12:08:41 2021 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 23 Oct 2021 13:15:06 +0200
parents 29ec2c198c8d
children e3d6184b89fa
comparison
equal deleted inserted replaced
26049:1663e536d900 26050:ebedba7a4898
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 Aug 03 6 " Last Change: 2021 Oct 19
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', 'devel' 27 \ 'trusty', 'xenial', 'bionic', 'focal', 'hirsute', 'impish', 'jammy',
28 \ 'devel'
28 \ ] 29 \ ]
29 let s:unsupported = [ 30 let s:unsupported = [
30 \ 'frozen', 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', 31 \ 'frozen', 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato',
31 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', 32 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy',
32 \ 33 \