# HG changeset patch # User Christian Brabandt # Date 1692561691 -7200 # Node ID 8c5377e802de759290b4893d8a29955f9561aa72 # Parent 82b4d64e86bc738e467da065c438885c30d1bd81 runtime(sdc): Add underscore to sdc flags in syntax file (#6201) Commit: https://github.com/vim/vim/commit/6d626c41842e2c3ab698338bbe5fcfcf0557ecd8 Author: Jordi Altay? Date: Sun Aug 20 21:45:13 2023 +0200 runtime(sdc): Add underscore to sdc flags in syntax file (https://github.com/vim/vim/issues/6201) diff --git a/runtime/syntax/sdc.vim b/runtime/syntax/sdc.vim --- a/runtime/syntax/sdc.vim +++ b/runtime/syntax/sdc.vim @@ -25,7 +25,7 @@ syn keyword sdcNonIdealities set_load se 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