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,