James McCoy | 7b7cda6 | 2023-10-26 17:14:30 -0400 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: Debian version information |
| 3 | " Maintainer: Debian Vim Maintainers |
Simon Quigley | 9291706 | 2024-04-27 11:51:45 +0200 | [diff] [blame] | 4 | " Last Change: 2024 Apr 27 |
James McCoy | 7b7cda6 | 2023-10-26 17:14:30 -0400 | [diff] [blame] | 5 | " URL: https://salsa.debian.org/vim-team/vim-debian/blob/main/syntax/shared/debversions.vim |
| 6 | |
| 7 | let s:cpo = &cpo |
| 8 | set cpo-=C |
| 9 | |
| 10 | let g:debSharedSupportedVersions = [ |
| 11 | \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', 'sid', 'rc-buggy', |
| 12 | \ 'bullseye', 'bookworm', 'trixie', 'forky', |
| 13 | \ |
Simon Quigley | 9291706 | 2024-04-27 11:51:45 +0200 | [diff] [blame] | 14 | \ 'trusty', 'xenial', 'bionic', 'focal', 'jammy', 'mantic', 'noble', 'oracular', |
James McCoy | 7b7cda6 | 2023-10-26 17:14:30 -0400 | [diff] [blame] | 15 | \ 'devel' |
| 16 | \ ] |
| 17 | let g:debSharedUnsupportedVersions = [ |
| 18 | \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', |
| 19 | \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', |
| 20 | \ 'jessie', 'stretch', 'buster', |
| 21 | \ |
| 22 | \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', |
| 23 | \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', |
| 24 | \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', |
| 25 | \ 'utopic', 'vivid', 'wily', 'yakkety', 'zesty', 'artful', 'cosmic', |
James McCoy | c7ddc9b | 2024-02-27 01:34:45 -0500 | [diff] [blame] | 26 | \ 'disco', 'eoan', 'hirsute', 'impish', 'kinetic', 'lunar', 'groovy' |
James McCoy | 7b7cda6 | 2023-10-26 17:14:30 -0400 | [diff] [blame] | 27 | \ ] |
| 28 | |
| 29 | let &cpo=s:cpo |