From 0d46c60e80ca5e8d75172f45002fcceff0b508ca Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sun, 12 Oct 2025 14:13:18 +1000 Subject: [PATCH] add missing symbol colours --- .../Features/CodeEditor/CustomSyntaxHighlighter.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs b/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs index 5fb5418..fc57c11 100644 --- a/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs +++ b/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs @@ -165,12 +165,17 @@ public partial class CustomHighlighter : SyntaxHighlighter "parameter name" => CachedColors.VariableBlue, "local name" => CachedColors.VariableBlue, "type parameter name" => CachedColors.ClassGreen, + "delegate name" => CachedColors.ClassGreen, + "event name" => CachedColors.White, // Punctuation & operators "operator" => CachedColors.White, "operator - overloaded" => CachedColors.Yellow, "punctuation" => CachedColors.White, + // Preprocessor + "preprocessor text" => CachedColors.White, + // Xml comments "xml doc comment - delimiter" => CachedColors.CommentGreen, "xml doc comment - name" => CachedColors.White,