From: TG Date: Fri, 13 Feb 2026 16:14:27 +0000 (+0000) Subject: runtime(systemverilog): use correct matchit pattern for the covergroup block X-Git-Tag: v9.1.2148~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10f5573672cb2656ed70a9ac9b9a995ceba3d8ed;p=thirdparty%2Fvim.git runtime(systemverilog): use correct matchit pattern for the covergroup block A covergroup start with the "covergroup" keyword and ends with the "endgroup" keyword. "group" is not even a reserved keyword in systemverilog. Reference: https://www.chipverify.com/systemverilog/systemverilog-covergroup-coverpoint#covergroup https://github.com/MikePopoloski/slang/blob/master/docs/grammar.md#covergroup_declaration closes: #19393 Signed-off-by: TG Signed-off-by: Christian Brabandt --- diff --git a/runtime/ftplugin/systemverilog.vim b/runtime/ftplugin/systemverilog.vim index 38ed1ad32a..145e115426 100644 --- a/runtime/ftplugin/systemverilog.vim +++ b/runtime/ftplugin/systemverilog.vim @@ -2,6 +2,7 @@ " Language: SystemVerilog " Maintainer: kocha " Last Change: 07-May-2021 +" 2026 Feb 13 by Vim project: correct matchit covergroup block #19394 if exists("b:did_ftplugin") finish @@ -32,7 +33,7 @@ if exists("loaded_matchit") \ '\:\,' . \ '\:\,' . \ '\:\,' . - \ '\:\,' . + \ '\:\,' . \ '\:\,' . \ '\:\,' . \ '\:\,' .