From fa9bc6b98c12680dbb653f07ab8871e06923bb0d Mon Sep 17 00:00:00 2001 From: m-kru Date: Mon, 19 Aug 2024 21:11:24 +0200 Subject: [PATCH] Small fix for VHDL syntax (#3375) --- runtime/syntax/vhdl.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/syntax/vhdl.yaml b/runtime/syntax/vhdl.yaml index 07099a1e..2c043186 100644 --- a/runtime/syntax/vhdl.yaml +++ b/runtime/syntax/vhdl.yaml @@ -4,7 +4,7 @@ detect: filename: "\\.vhdl?$" rules: - - type: "(i)\\b(string|integer|natural|positive|(un)?signed|std_u?logic(_vector)?|bit(_vector)?|boolean|u?x01z?|array|range)\\b" + - type: "(?i)\\b(string|integer|natural|positive|(un)?signed|std_u?logic(_vector)?|bit(_vector)?|boolean|u?x01z?|array|range)\\b" - identifier: "(?i)library[[:space:]]+[a-zA-Z_0-9]+" - identifier: "(?i)use[[:space:]]+[a-zA-Z_0-9\\.]+" - identifier: "(?i)component[[:space:]]+[a-zA-Z_0-9]+"