From: Jordi Altayó Date: Sun, 20 Aug 2023 19:45:13 +0000 (+0200) Subject: runtime(sdc): Add underscore to sdc flags in syntax file (#6201) X-Git-Tag: v9.0.1777~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d626c41842e2c3ab698338bbe5fcfcf0557ecd8;p=thirdparty%2Fvim.git runtime(sdc): Add underscore to sdc flags in syntax file (#6201) --- diff --git a/runtime/syntax/sdc.vim b/runtime/syntax/sdc.vim index 0ca9becf73..dbfa35eeb6 100644 --- a/runtime/syntax/sdc.vim +++ b/runtime/syntax/sdc.vim @@ -25,7 +25,7 @@ syn keyword sdcNonIdealities set_load set_min_capacitance set_max_capacitance syn keyword sdcCreateOperations create_clock create_timing_netlist update_timing_netlist " command flags highlighting -syn match sdcFlags "[[:space:]]-[[:alpha:]]*\>" +syn match sdcFlags "[[:space:]]-[[:alpha:]_]*\>" " Define the default highlighting. hi def link sdcCollections Repeat