From fc0323763ca8553b531cce4a09dab35a6797bd9c Mon Sep 17 00:00:00 2001 From: handsome-feng Date: Mon, 9 Oct 2023 16:57:35 +0800 Subject: [PATCH] Add support for openKylin series --- debian/changelog | 6 ++++++ runtime/syntax/debchangelog.vim | 4 +++- runtime/syntax/debsources.vim | 4 +++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8f61f13..a4073b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vim (2:8.1.2269-ok8) yangtze; urgency=medium + + * close: #I86JQQ 添加openKylin关键字支持 + + -- handsome_feng Mon, 09 Oct 2023 16:52:26 +0800 + vim (2:8.1.2269-ok7) yangtze; urgency=medium * CVE-2022-0359 Illegal memory access with large 'tabstop' in Ex mode. diff --git a/runtime/syntax/debchangelog.vim b/runtime/syntax/debchangelog.vim index eb82613..e585298 100644 --- a/runtime/syntax/debchangelog.vim +++ b/runtime/syntax/debchangelog.vim @@ -24,7 +24,9 @@ let s:supported = [ \ 'wheezy', 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm', \ 'sid', 'rc-buggy', \ - \ 'trusty', 'xenial', 'bionic', 'disco', 'eoan', 'focal', 'devel' + \ 'trusty', 'xenial', 'bionic', 'disco', 'eoan', 'focal', 'devel', + \ + \ 'yangtze', 'nile' \ ] let s:unsupported = [ \ 'frozen', 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', diff --git a/runtime/syntax/debsources.vim b/runtime/syntax/debsources.vim index 349b2ac..673fea2 100644 --- a/runtime/syntax/debsources.vim +++ b/runtime/syntax/debsources.vim @@ -26,7 +26,9 @@ let s:supported = [ \ 'wheezy', 'jessie', 'stretch', 'buster', 'bullseye', 'bookworm', \ 'sid', 'rc-buggy', \ - \ 'trusty', 'xenial', 'bionic', 'disco', 'eoan', 'focal', 'devel' + \ 'trusty', 'xenial', 'bionic', 'disco', 'eoan', 'focal', 'devel', + \ + \ 'yangtze', 'nile' \ ] let s:unsupported = [ \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', -- Gitee