]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(sdc): Add underscore to sdc flags in syntax file (#6201)
authorJordi Altayó <jordialtayo@gmail.com>
Sun, 20 Aug 2023 19:45:13 +0000 (21:45 +0200)
committerGitHub <noreply@github.com>
Sun, 20 Aug 2023 19:45:13 +0000 (21:45 +0200)
runtime/syntax/sdc.vim

index 0ca9becf734b21b5165ba22e61996101ed74cd9e..dbfa35eeb6966787780395b96acb759b94299b67 100644 (file)
@@ -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