From 81457563bee722f85ccbf946170742c7db3c8b35 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sun, 12 Oct 2025 12:34:08 +1000 Subject: [PATCH] add syntax colour --- .../Features/CodeEditor/CustomSyntaxHighlighter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs b/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs index 8640d01..f15a461 100644 --- a/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs +++ b/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs @@ -164,6 +164,7 @@ public partial class CustomHighlighter : SyntaxHighlighter "static symbol" => CachedColors.Yellow, // ?? "parameter name" => CachedColors.VariableBlue, "local name" => CachedColors.VariableBlue, + "type parameter name" => CachedColors.ClassGreen, // Punctuation & operators "operator" => CachedColors.White,