debversions.vim (1343B)
1 " Vim syntax file 2 " Language: Debian version information 3 " Maintainer: Debian Vim Maintainers 4 " Last Change: 2026 Jan 01 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 " Version names that are upcoming or released and still within the standard support window 11 let g:debSharedSupportedVersions = [ 12 \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', 'sid', 'rc-buggy', 13 \ 'bookworm', 'trixie', 'forky', 'duke', 14 \ 15 \ 'jammy', 'noble', 'questing', 'resolute', 16 \ 'devel' 17 \ ] 18 " Historic version names, no longer under standard support 19 let g:debSharedUnsupportedVersions = [ 20 \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', 21 \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', 22 \ 'jessie', 'stretch', 'buster', 'bullseye', 23 \ 24 \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty', 25 \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid', 26 \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy', 27 \ 'trusty', 'utopic', 'vivid', 'wily', 'xenial', 'yakkety', 'zesty', 28 \ 'artful', 'bionic', 'cosmic', 'disco', 'eoan', 'focal', 'groovy', 29 \ 'hirsute', 'impish', 'kinetic', 'lunar', 'mantic', 'oracular', 30 \ 'plucky', ] 31 32 let &cpo=s:cpo