summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/shared/debversions.vim
diff options
context:
space:
mode:
Diffstat (limited to 'uvim/runtime/syntax/shared/debversions.vim')
-rw-r--r--uvim/runtime/syntax/shared/debversions.vim32
1 files changed, 0 insertions, 32 deletions
diff --git a/uvim/runtime/syntax/shared/debversions.vim b/uvim/runtime/syntax/shared/debversions.vim
deleted file mode 100644
index 2548ddd350..0000000000
--- a/uvim/runtime/syntax/shared/debversions.vim
+++ /dev/null
@@ -1,32 +0,0 @@
-" Vim syntax file
-" Language: Debian version information
-" Maintainer: Debian Vim Maintainers
-" Last Change: 2026 Jan 01
-" URL: https://salsa.debian.org/vim-team/vim-debian/blob/main/syntax/shared/debversions.vim
-
-let s:cpo = &cpo
-set cpo-=C
-
-" Version names that are upcoming or released and still within the standard support window
-let g:debSharedSupportedVersions = [
- \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', 'sid', 'rc-buggy',
- \ 'bookworm', 'trixie', 'forky', 'duke',
- \
- \ 'jammy', 'noble', 'questing', 'resolute',
- \ 'devel'
- \ ]
-" Historic version names, no longer under standard support
-let g:debSharedUnsupportedVersions = [
- \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato',
- \ 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy',
- \ 'jessie', 'stretch', 'buster', 'bullseye',
- \
- \ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty',
- \ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid',
- \ 'maverick', 'natty', 'oneiric', 'precise', 'quantal', 'raring', 'saucy',
- \ 'trusty', 'utopic', 'vivid', 'wily', 'xenial', 'yakkety', 'zesty',
- \ 'artful', 'bionic', 'cosmic', 'disco', 'eoan', 'focal', 'groovy',
- \ 'hirsute', 'impish', 'kinetic', 'lunar', 'mantic', 'oracular',
- \ 'plucky', ]
-
-let &cpo=s:cpo