Mercurial > vim
comparison runtime/syntax/debsources.vim @ 18053:8ac85adee561
Update runtime files
Commit: https://github.com/vim/vim/commit/8fe1000e9c3438d0ff36cf2340f0f0e48f8fb89f
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 11 22:56:44 2019 +0200
Update runtime files
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 11 Sep 2019 23:00:05 +0200 |
parents | 1eaf34420bb3 |
children | 1cd44535be32 |
comparison
equal
deleted
inserted
replaced
18052:5023a656f85e | 18053:8ac85adee561 |
---|---|
1 " Vim syntax file | 1 " Vim syntax file |
2 " Language: Debian sources.list | 2 " Language: Debian sources.list |
3 " Maintainer: Debian Vim Maintainers | 3 " Maintainer: Debian Vim Maintainers |
4 " Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl> | 4 " Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl> |
5 " Last Change: 2019 Apr 21 | 5 " Last Change: 2019 Sep 07 |
6 " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debsources.vim | 6 " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debsources.vim |
7 | 7 |
8 " Standard syntax initialization | 8 " Standard syntax initialization |
9 if exists('b:current_syntax') | 9 if exists('b:current_syntax') |
10 finish | 10 finish |
24 let s:supported = [ | 24 let s:supported = [ |
25 \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', | 25 \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', |
26 \ 'wheezy', 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm', | 26 \ 'wheezy', 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm', |
27 \ 'sid', 'rc-buggy', | 27 \ 'sid', 'rc-buggy', |
28 \ | 28 \ |
29 \ 'trusty', 'xenial', 'bionic', 'cosmic', 'disco', 'eoan', 'devel' | 29 \ 'trusty', 'xenial', 'bionic', 'disco', 'eoan', 'devel' |
30 \ ] | 30 \ ] |
31 let s:unsupported = [ | 31 let s:unsupported = [ |
32 \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', | 32 \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', |
33 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', | 33 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', |
34 \ | 34 \ |
35 \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', | 35 \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', |
36 \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', | 36 \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', |
37 \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', | 37 \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', |
38 \ 'utopic', 'vivid', 'wily', 'yakkety', 'zesty', 'artful' | 38 \ 'utopic', 'vivid', 'wily', 'yakkety', 'zesty', 'artful', 'cosmic' |
39 \ ] | 39 \ ] |
40 let &cpo=s:cpo | 40 let &cpo=s:cpo |
41 | 41 |
42 " Match uri's | 42 " Match uri's |
43 syn match debsourcesUri '\(https\?://\|ftp://\|[rs]sh://\|debtorrent://\|\(cdrom\|copy\|file\):\)[^' <>"]\+' | 43 syn match debsourcesUri '\(https\?://\|ftp://\|[rs]sh://\|debtorrent://\|\(cdrom\|copy\|file\):\)[^' <>"]\+' |