From 1576412922a0cfd57436d7c38631a4ecb9e83f27 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 9 Jan 2026 19:09:51 +1000 Subject: [PATCH] add verbatim string syntax highlighting mapping --- .../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 66d5ea6..877ced3 100644 --- a/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs +++ b/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs @@ -233,6 +233,7 @@ public partial class CustomHighlighter : SyntaxHighlighter // Literals & comments "string" => CachedColors.LightOrangeBrown, + "string - verbatim" => CachedColors.LightOrangeBrown, "string - escape character" => CachedColors.Orange, "comment" => CachedColors.CommentGreen, "number" => CachedColors.NumberGreen,