summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/shared/debversions.mnv
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-03 22:21:25 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 00:23:03 +0300
commit2eae5db069dc171f74cd863487655f6a88e5384d (patch)
tree2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/syntax/shared/debversions.mnv
parent473d922faed49241a5d29d9e37dc4819cd512006 (diff)
downloadProject-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz
Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/syntax/shared/debversions.mnv')
-rw-r--r--uvim/runtime/syntax/shared/debversions.mnv32
1 files changed, 32 insertions, 0 deletions
diff --git a/uvim/runtime/syntax/shared/debversions.mnv b/uvim/runtime/syntax/shared/debversions.mnv
new file mode 100644
index 0000000000..f6e54845db
--- /dev/null
+++ b/uvim/runtime/syntax/shared/debversions.mnv
@@ -0,0 +1,32 @@
+" MNV syntax file
+" Language: Debian version information
+" Maintainer: Debian MNV Maintainers
+" Last Change: 2026 Jan 01
+" URL: https://salsa.debian.org/mnv-team/mnv-debian/blob/main/syntax/shared/debversions.mnv
+
+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